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 type that contain String value type of avatar image version is contain upadted or latest version left,scaleX,scaleY is double value used to alignment of image fill, src, avatarType contains string value animation Contains object values

Implementation

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