Property constructor

Property({
  1. int? id,
  2. int? type,
  3. String? stringValue,
  4. int? longValue,
  5. List<Object?>? arrayValue,
  6. int? byteValue,
  7. DataSourceIos? dataSourceValue,
  8. Version? versionValue,
  9. Object? objectValue,
})

Implementation

Property({
  this.id,
  this.type,
  this.stringValue,
  this.longValue,
  this.arrayValue,
  this.byteValue,
  this.dataSourceValue,
  this.versionValue,
  this.objectValue,
});