ListApplicationsResponse.fromJson constructor

ListApplicationsResponse.fromJson(
  1. Map<String, dynamic> json
)

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?,
  );
}