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