Resource constructor

Resource({
  1. double? doubleValue,
  2. int? integerValue,
  3. int? longValue,
  4. String? name,
  5. List<String>? stringSetValue,
  6. String? type,
})

Implementation

Resource({
  this.doubleValue,
  this.integerValue,
  this.longValue,
  this.name,
  this.stringSetValue,
  this.type,
});