Component constructor

Component({
  1. String? name,
  2. num? componentId,
  3. num? height,
  4. num? width,
  5. num? x,
  6. num? y,
  7. String? id,
})

Implementation

Component({
  this.name,
  this.componentId,
  this.height,
  this.width,
  this.x,
  this.y,
  this.id,
});