ApplicationFeeRefunds.fromJson constructor
ApplicationFeeRefunds.fromJson(
- Object? json
Implementation
factory ApplicationFeeRefunds.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return ApplicationFeeRefunds(
data: (map['data'] as List<Object?>)
.map((el) => FeeRefund.fromJson(el))
.toList(),
hasMore: (map['has_more'] as bool),
url: (map['url'] as String),
);
}