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