RetryConfig.fromJson constructor

RetryConfig.fromJson(
  1. Map json_
)

Implementation

RetryConfig.fromJson(core.Map json_)
    : this(
        maxAttempts: json_['maxAttempts'] as core.int?,
        maxBackoff: json_['maxBackoff'] as core.String?,
        maxDoublings: json_['maxDoublings'] as core.int?,
        maxRetryDuration: json_['maxRetryDuration'] as core.String?,
        minBackoff: json_['minBackoff'] as core.String?,
      );