resetMode method
Sends the Reset Mode command to the tag.
This uses NFCFeliCaTag#resetMode API on iOS.
Implementation
Future<FeliCaStatusFlag> resetMode() async {
return channel.invokeMethod('FeliCa#resetMode', {
'handle': _tag.handle,
}).then((value) => $GetFeliCaStatusFlag(Map.from(value)));
}