BatchRetryStrategy.fromJson constructor

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

Implementation

factory BatchRetryStrategy.fromJson(Map<String, dynamic> json) {
  return BatchRetryStrategy(
    attempts: json['Attempts'] as int?,
  );
}