ListApplicationsOutput.fromJson constructor
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?,
);
}