ListApplicationsOutput.fromJson constructor

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

Implementation

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