CreateRoleSetRequest constructor

CreateRoleSetRequest({
  1. required String name,
  2. String? key,
  3. String? description,
  4. required String defaultRoleKey,
  5. required String creatorRoleKey,
  6. CreateRoleSetRequestTypeEnum? type,
  7. List<String> roles = const [],
})

Returns a new CreateRoleSetRequest instance.

Implementation

CreateRoleSetRequest({
  required this.name,
  this.key,
  this.description,
  required this.defaultRoleKey,
  required this.creatorRoleKey,
  this.type,
  this.roles = const [],
});