Resource constructor

Resource({
  1. required String id,
  2. required String type,
  3. ResourceDetails? details,
  4. Partition? partition,
  5. String? region,
  6. String? resourceRole,
  7. Map<String, String>? tags,
})

Implementation

Resource({
  required this.id,
  required this.type,
  this.details,
  this.partition,
  this.region,
  this.resourceRole,
  this.tags,
});