IssuingDisputeUpdateOptions.fromJson constructor

IssuingDisputeUpdateOptions.fromJson(
  1. Object? json
)

Implementation

factory IssuingDisputeUpdateOptions.fromJson(Object? json) {
  final map = (json as Map).cast<String, Object?>();
  return IssuingDisputeUpdateOptions(
    amount: map['amount'] == null ? null : (map['amount'] as num).toInt(),
    evidence: map['evidence'] == null
        ? null
        : IssuingDisputeCreateOptionsEvidence.fromJson(map['evidence']),
    expand: map['expand'] == null
        ? null
        : (map['expand'] as List<Object?>)
            .map((el) => (el as String))
            .toList(),
    metadata: map['metadata'] == null
        ? null
        : (map['metadata'] as Map).cast<String, Object?>().map((
              key,
              value,
            ) =>
                MapEntry(
                  key,
                  (value as String),
                )),
  );
}