FeeRefundCreateOptions.fromJson constructor
FeeRefundCreateOptions.fromJson(
- Object? json
Implementation
factory FeeRefundCreateOptions.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return FeeRefundCreateOptions(
amount: map['amount'] == null ? null : (map['amount'] as num).toInt(),
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),
)),
);
}