toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final numRetries = this.numRetries;
  final perTryTimeout = this.perTryTimeout;
  final retryConditions = this.retryConditions;
  return {
    'numRetries': ?numRetries,
    'perTryTimeout': ?perTryTimeout,
    'retryConditions': ?retryConditions,
  };
}