ViewBillingResponse.fromJson constructor
Implementation
factory ViewBillingResponse.fromJson(Map<String, dynamic> json) {
return ViewBillingResponse(
billingRecords: (json['BillingRecords'] as List?)
?.whereNotNull()
.map((e) => BillingRecord.fromJson(e as Map<String, dynamic>))
.toList(),
nextPageMarker: json['NextPageMarker'] as String?,
);
}