AssetPropertyVariant constructor

AssetPropertyVariant({
  1. String? booleanValue,
  2. String? doubleValue,
  3. String? integerValue,
  4. String? stringValue,
})

Implementation

AssetPropertyVariant({
  this.booleanValue,
  this.doubleValue,
  this.integerValue,
  this.stringValue,
});