ListServiceQuotaIncreaseRequestsInTemplateResponse.fromJson constructor
ListServiceQuotaIncreaseRequestsInTemplateResponse.fromJson(
- Map<String, dynamic> json
)
Implementation
factory ListServiceQuotaIncreaseRequestsInTemplateResponse.fromJson(
Map<String, dynamic> json) {
return ListServiceQuotaIncreaseRequestsInTemplateResponse(
nextToken: json['NextToken'] as String?,
serviceQuotaIncreaseRequestInTemplateList:
(json['ServiceQuotaIncreaseRequestInTemplateList'] as List?)
?.whereNotNull()
.map((e) => ServiceQuotaIncreaseRequestInTemplate.fromJson(
e as Map<String, dynamic>))
.toList(),
);
}