checkAccessByEmail method
Returns the list of emails from the input list that do not have access to site.
Permissions required: Permission to access the Confluence site ('Can use' global permission).
Implementation
Future<Map<String, dynamic>> checkAccessByEmail() async {
return await _client.send(
'post',
'user/access/check-access-by-email',
) as Map<String, Object?>;
}