Identity constructor

const Identity({
  1. required String principal,
  2. Set<String> roles = const {},
  3. bool authenticated = true,
})

Creates an identity.

Implementation

const Identity({
  required this.principal,
  this.roles = const {},
  this.authenticated = true,
});