BatchGetApplicationsOutput.fromJson constructor

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

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