DFObjects constructor

DFObjects({
  1. double? height,
  2. int? id,
  3. String? name,
  4. double? rotation,
  5. String? type,
  6. bool? visible,
  7. double? width,
  8. double? x,
  9. double? y,
  10. List<Property>? properties,
})

Implementation

DFObjects({
  this.height,
  this.id,
  this.name,
  this.rotation,
  this.type,
  this.visible,
  this.width,
  this.x,
  this.y,
  this.properties,
});