start static method

Future<void> start()

Implementation

static Future<void> start() async {
  if (!await _service.isRunning()) {
    await _service.startService();
    log('BackgroundService: Started.');
  }
}