sayHello static method

Future<String?> sayHello(
  1. String message
)

Implementation

static Future<String?> sayHello(String message) async {
  final String? res = await _channel.invokeMethod('sayHello',{'message' :message});
  return res;
}