start method

  1. @override
Future<String?> start()
override

Implementation

@override
Future<String?> start() async {
  // Invoke the native method 'start' and return the result.
  final start = await methodChannel.invokeMethod<String>('start');
  return start;
}