ScopedUser constructor

const ScopedUser({
  1. required int id,
  2. required String email,
  3. required bool active,
  4. String? name,
})

Implementation

const ScopedUser({
  required this.id,
  required this.email,
  required this.active,
  this.name,
});