fluttercommunity / flutter_contacts

Contacts Service - A Flutter plugin to retrieve and manage contacts on Android and iOS devices. Maintainer: @lukasgit

Home Page:https://pub.dev/packages/contacts_service

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Convert avatar (Uint8List) to File

yadaniyil opened this issue · comments

I'm not able to convert contact's avatar to File.
I tried to
File file = File.fromRawPath(contact.avatar);
But this file seems corrupted because I cannot use Image.file with it or upload to Firebase Storage.

How to convert avatar to File?

Solution: save the file locally and then use it

Solution: save the file locally and then use it
can u share the solution??

can you provide some basic example?