getBackgroundDeliveryConfig static method
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;
}