Resource constructor

Resource({
  1. String? arn,
  2. DateTime? creationTime,
  3. DateTime? lastUpdatedTime,
  4. String? resourceGroupArn,
  5. String? resourceShareArn,
  6. ResourceStatus? status,
  7. String? statusMessage,
  8. String? type,
})

Implementation

Resource({
  this.arn,
  this.creationTime,
  this.lastUpdatedTime,
  this.resourceGroupArn,
  this.resourceShareArn,
  this.status,
  this.statusMessage,
  this.type,
});