AppInstallationList.fromMap constructor
Implementation
factory AppInstallationList.fromMap(Map<String, dynamic> map) {
return AppInstallationList(
total: map['total'],
installations: List<AppInstallation>.from(
map['installations'].map((p) => AppInstallation.fromMap(p))),
);
}