setIosAlertMessage static method
iOS only, change currently displayed NFC reader session alert message with message.
There must be a valid session when invoking. On Android, call to this function does nothing.
Implementation
static Future<void> setIosAlertMessage(String message) async {
if (!kIsWeb) {
return await _channel.invokeMethod('setIosAlertMessage', message);
}
}