Resource constructor

Resource({
  1. required ResourceTypeEnum? type,
  2. String? id,
  3. String? name,
  4. String? orgID,
  5. String? org,
})

Returns a new Resource instance.

Implementation

Resource({
  required this.type,
  this.id,
  this.name,
  this.orgID,
  this.org,
});