readPages method
Sends the Read Pages command to the tag.
This uses MifareUltralight#readPages API on Android.
Implementation
Future<Uint8List> readPages({
required int pageOffset,
}) async {
return channel.invokeMethod('MifareUltralight#readPages', {
'handle': _tag.handle,
'pageOffset': pageOffset,
}).then((value) => value!);
}