AuthUserRole constructor

AuthUserRole({
  1. required String id,
  2. required String name,
  3. required String description,
  4. required List<String> permissions,
  5. required String? businessId,
  6. required bool systemRole,
  7. required bool enabled,
  8. required String userId,
})

Implementation

AuthUserRole({
  required this.id,
  required this.name,
  required this.description,
  required this.permissions,
  required this.businessId,
  required this.systemRole,
  required this.enabled,
  required this.userId,
});