showToast method

Future<void> showToast(
  1. String message
)

Shows a native toast message on the current platform

message - The message to display in the toast

Throws PlatformException if the toast cannot be displayed

Implementation

Future<void> showToast(String message) {
  throw UnimplementedError('showToast() has not been implemented.');
}