SupportPortalUser constructor

const SupportPortalUser({
  1. required String externalId,
  2. String? name,
  3. String? email,
  4. String? avatar,
  5. Map<String, dynamic>? metadata,
})

Implementation

const SupportPortalUser({
  required this.externalId,
  this.name,
  this.email,
  this.avatar,
  this.metadata,
});