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