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