sayHello static method

Future<String?> sayHello()

Implementation

static Future<String?> sayHello() async {
  return await _channel.invokeMethod('sayHello');
}