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