RefundOrId.fromJson constructor
RefundOrId.fromJson(
- Object? json
Implementation
factory RefundOrId.fromJson(Object? json) {
if (json is String) {
return RefundId(id: json);
}
return Refund.fromJson(json);
}