RetryInfo.fromJson constructor
RetryInfo.fromJson(
- Object? j
Implementation
factory RetryInfo.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return RetryInfo(
retryDelay: switch (json['retryDelay']) {
null => null,
Object $1 => Duration.fromJson($1),
},
);
}