startService method

  1. @override
Future<bool?> startService({
  1. String? notificationTitle,
})
override

Implementation

@override
Future<bool?> startService({
  String? notificationTitle,
}) async {
  final enabled = await methodChannel.invokeMethod<bool>('startService', {
    'notificationTitle': notificationTitle,
  });
  return enabled;
}