OAuth2Microsoft.fromMap constructor
Implementation
factory OAuth2Microsoft.fromMap(Map<String, dynamic> map) {
return OAuth2Microsoft(
$id: map['\$id'].toString(),
enabled: map['enabled'],
applicationId: map['applicationId'].toString(),
applicationSecret: map['applicationSecret'].toString(),
tenant: map['tenant'].toString(),
);
}