findByteSize static method

Future<int?> findByteSize(
  1. String imageId
)

Acquire the saved image byte size.

Implementation

static Future<int?> findByteSize(String imageId) async {
  return _channel.invokeMethod<int>('findByteSize', {'imageId': imageId});
}