startService method

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

Implementation

@override
Future<void> startService() async {
  if (Platform.isIOS) {
    return await methodChannel.invokeMethod<void>("startService", {});
  } else {
    return await Future.value();
  }
}