ListServiceQuotaIncreaseRequestsInTemplateResponse.fromJson constructor

ListServiceQuotaIncreaseRequestsInTemplateResponse.fromJson(
  1. 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(),
  );
}