toBase64 property

String? get toBase64

Implementation

String? get toBase64 {
  if (this == null) return null;
  List<int> imageBytes = this!.readAsBytesSync();
  String base64Image = base64Encode(imageBytes);
  return base64Image;
}