Answers for "how to base64 string to file conevert and download file in flutter"

3

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 "how to base64 string to file conevert and download file in flutter"

Browse Popular Code Answers by Language