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