HttpEndpointRetryOptions.fromJson constructor

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

Implementation

factory HttpEndpointRetryOptions.fromJson(Map<String, dynamic> json) {
  return HttpEndpointRetryOptions(
    durationInSeconds: json['DurationInSeconds'] as int?,
  );
}