User constructor

const User({
  1. required String? displayIdentifier,
  2. required String identifier,
  3. required String? type,
})

Implementation

const User({
  required this.displayIdentifier,
  required this.identifier,
  required this.type,
});