getBackgroundDeliveryConfig static method

Future<Map<String, dynamic>?> getBackgroundDeliveryConfig({
  1. required String connectionId,
})

Implementation

static Future<Map<String, dynamic>?> getBackgroundDeliveryConfig({
  required String connectionId,
}) async {
  final result = await _channel.invokeMethod('getBackgroundDeliveryConfig', {
    'connectionId': connectionId,
  });

  ExceptionHandler.checkException(result);
  return result != null ? jsonDecode(result) : null;
}