read method

Read the current NDEF message on this tag.

Implementation

Future<NdefMessage> read() async {
  return channel.invokeMethod('Ndef#read', {
    'handle': _tag.handle,
  }).then((value) => $GetNdefMessage(Map.from(value)));
}