startService method

Future<void> startService(
  1. FlutterAndroidIntent intent, {
  2. bool debug = false,
})

Implementation

Future<void> startService(FlutterAndroidIntent intent, {bool debug = false}) async {
  await _shell.exec(['am', 'startservice', ...intent.asArguments()], debug: debug);
}