getPdfPageData method
Implementation
Future<Uint8List?> getPdfPageData({
required String path,
required int page,
int width = 0,
int height = 0,
}) async {
final res = await _channel.invokeMethod<Uint8List>(
'$_namePdf/getPdfPageData',
{
'path':path,
'page':page,
'width':width,
'height':height,
},
);
return res;
}