groups property

List<String> groups

The cognito:groups claim is a list of groups the user belongs to.

Reference

Implementation

List<String> get groups =>
    (claims.customClaims['cognito:groups'] as List?)?.cast() ?? const [];