getContinueRunningAfterAppKilled static method

Future<bool> getContinueRunningAfterAppKilled()

only works with v2 Android embedding (Flutter 1.12.x+) gets whether the foreground service should continue running after the app is killed for instance when it's swiped off of the recent apps list default behavior is true = keep service running after app killed

Implementation

static Future<bool> getContinueRunningAfterAppKilled() async =>
    await _invokeMainChannel("getContinueRunningAfterAppKilled");