getImageBytes method
Implementation
@override
Future<Uint8List?> getImageBytes(
int page, PageSourceType pageSourceType) async {
return await methodChannel.invokeMethod<Uint8List?>('getImageBytes',
{'page': page, 'pageSourceType': pageSourceType.index});
}