startService method

  1. @override
Future<void> startService()
override

Implementation

@override
Future<void> startService() async {
  try {
    return methodChannel.invokeMethod("startService");
  } on PlatformException catch (e, s) {
    print(s);
    return;
  }
}