getRoles method
Implementation
Future<List<KuzzleRole>> getRoles() async {
if (policies == null || policies!.isEmpty) {
return <KuzzleRole>[];
}
return kuzzle.security.mGetRoles(roleIds);
}
Future<List<KuzzleRole>> getRoles() async {
if (policies == null || policies!.isEmpty) {
return <KuzzleRole>[];
}
return kuzzle.security.mGetRoles(roleIds);
}