Skip to content

Instantly share code, notes, and snippets.

@yumi0629
Created January 4, 2019 03:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yumi0629/b6ea2febf253ad122e91697f2128efc8 to your computer and use it in GitHub Desktop.
Save yumi0629/b6ea2febf253ad122e91697f2128efc8 to your computer and use it in GitHub Desktop.
fileToBase64
import 'dart:convert';
import 'dart:io';
String fileToBase64(File file){
var imageByte = file.readAsBytesSync();
return base64Encode(imageByte);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment