ExternalReference constructor

ExternalReference({
  1. String? alias,
  2. String? type,
  3. String? previewPriority,
  4. String? lastModifiedBy,
  5. String? lastModifiedDateTime,
})

Creates a new ExternalReference instance.

Implementation

ExternalReference({
  this.alias,
  this.type,
  this.previewPriority,
  this.lastModifiedBy,
  this.lastModifiedDateTime,
});