toast method

dynamic toast (
  1. String message,
  2. bool isShortLength
)

Implementation

static toast(String message, bool isShortLength) {
  _channel.invokeMethod(
      "toast", {"message": message, "short_length": isShortLength});
}