show method

Future<ExtendedOverlayEntry?> show(
  1. String message, {
  2. IconData? customIcon,
  3. ToastOptions? options,
})

Implementation

Future<ExtendedOverlayEntry?> show(String message,
        {IconData? customIcon, ToastOptions? options}) =>
    Toast(message, options: options, customIcon: customIcon, style: this)
        .show();