Object constructor

Object({
  1. String? type,
  2. int? version,
  3. double? left,
  4. int? top,
  5. String? fill,
  6. double? scaleX,
  7. double? scaleY,
  8. String? src,
  9. String? avatarType,
  10. Animation? animation,
})

This is constructor of Object

Implementation

Object({
  this.type,
  this.version,
  this.left,
  this.top,
  this.fill,
  this.scaleX,
  this.scaleY,
  this.src,
  this.avatarType,
  this.animation,
});