BlobData constructor

BlobData({
  1. int? growth,
  2. double? size,
  3. int? edges,
  4. BlobPoints? points,
  5. String? id,
  6. Path? path,
  7. String? svgPath,
  8. BlobCurves? curves,
})

Implementation

BlobData({
  this.growth,
  this.size,
  this.edges,
  this.points,
  this.id,
  this.path,
  this.svgPath,
  this.curves,
});