ListResourcesResponse.fromJson constructor
Implementation
factory ListResourcesResponse.fromJson(Map<String, dynamic> json) {
return ListResourcesResponse(
nextToken: json['NextToken'] as String?,
resourceInfoList: (json['ResourceInfoList'] as List?)
?.whereNotNull()
.map((e) => ResourceInfo.fromJson(e as Map<String, dynamic>))
.toList(),
);
}