disableBackgroundDelivery static method
Implementation
static Future<bool> disableBackgroundDelivery({
required String connectionId,
}) async {
final result = await _channel.invokeMethod('disableBackgroundDelivery', {
'connectionId': connectionId,
});
ExceptionHandler.checkException(result);
return result == true;
}