LinkedResource constructor

LinkedResource({
  1. String? id,
  2. String? displayName,
  3. String? webUrl,
  4. String? applicationName,
  5. String? externalId,
})

Creates a new LinkedResource instance.

Implementation

LinkedResource({
  this.id,
  this.displayName,
  this.webUrl,
  this.applicationName,
  this.externalId,
});