UserType constructor

const UserType({
  1. required String displayName,
  2. required String name,
  3. required String id,
})

Constructs a new instance.

Implementation

const UserType({
  required this.displayName,
  required this.name,
  required this.id,
});