loadImageBytesFromPath function

Future<Uint8List> loadImageBytesFromPath(
  1. String imagePath
)

Implementation

Future<Uint8List> loadImageBytesFromPath(String imagePath) {
  return Future.error(
    UnsupportedError('Web image loading supports data URLs only.'),
  );
}