ListApplicationsResponse.fromJson constructor
Implementation
factory ListApplicationsResponse.fromJson(Map<String, dynamic> json) {
return ListApplicationsResponse(
applications: (json['applications'] as List?)
?.whereNotNull()
.map((e) => ApplicationSummary.fromJson(e as Map<String, dynamic>))
.toList(),
nextToken: json['nextToken'] as String?,
);
}