start method

Future<void> start()

Implementation

Future<void> start() async {
  try {
    final int result = await _channel.invokeMethod('start');
  } on PlatformException catch (e) {
    print("Error from native: $e.message");
  }
}