SimpleUser constructor

SimpleUser(
  1. String username,
  2. Iterable<String> roles
)

Implementation

SimpleUser(this.username, Iterable<String> roles)
: _roles = roles is Set<String> ? roles: new Set<String>.from(roles);