OAuth2Notion.fromMap constructor
Implementation
factory OAuth2Notion.fromMap(Map<String, dynamic> map) {
return OAuth2Notion(
$id: map['\$id'].toString(),
enabled: map['enabled'],
oauthClientId: map['oauthClientId'].toString(),
oauthClientSecret: map['oauthClientSecret'].toString(),
);
}