alert static method

Future<void> alert(
  1. String message
)

Implementation

static Future<void> alert(String message) async {
  await _channel.invokeMethod<void>('alert', [message]);
}