Answers for "convert file intobase 64 string flutter"

6

flutter convert file to base64

final bytes = Io.File(imageBytes.path).readAsBytesSync();

String img64 = base64Encode(bytes);
Posted by: Guest on June-06-2021

Code answers related to "convert file intobase 64 string flutter"

Browse Popular Code Answers by Language