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