toast static method

Future toast(
  1. String content
)

Implementation

static Future<dynamic> toast(String content) {
  final Map<String, String> args = {'content': content};
  return _channel.invokeMethod(FlyVerifySDKMethods.toast.name, args);
}