showToast static method

Future<void> showToast(
  1. String message
)

Implementation

static Future<void> showToast(String message) async {
  await _channel
      .invokeMethod('showToast', <String, dynamic>{'message': message});
}