ProcessingStrategy.fromJson constructor

ProcessingStrategy.fromJson(
  1. Map<String, dynamic> json
)

Implementation

ProcessingStrategy.fromJson(Map<String, dynamic> json)
    : type = processingStrategyTypeFromString(json['type']),
      retries = json['retries'],
      failurePercentage = json['failurePercentage'],
      pauseBetweenRetries = json['pauseBetweenRetries'],
      maxPauseBetweenRetries = json['maxPauseBetweenRetries'];