Objects constructor

Objects({
  1. double? height,
  2. int? id,
  3. int? gid,
  4. String? name,
  5. double? rotation,
  6. String? typeOrClass,
  7. bool? visible,
  8. double? width,
  9. double? x,
  10. double? y,
  11. List<Property>? properties,
  12. bool? ellipse,
  13. bool? point,
  14. Text? text,
})

Implementation

Objects({
  this.height,
  this.id,
  this.gid,
  this.name,
  this.rotation,
  this.typeOrClass,
  this.visible,
  this.width,
  this.x,
  this.y,
  this.properties,
  this.ellipse,
  this.point,
  this.text,
});