stopService static method

Future<void> stopService(
  1. String name
)

Stops a persistent background service.

Implementation

static Future<void> stopService(String name) async {
  _ensureInitialized();
  await TaskFlowPlatform.instance.stopService(name);
}