ZKFlower constructor

ZKFlower(
  1. double radius, [
  2. Color? color
])

/////////////////////////////////////////////////////////

ZKFlower constructor

/////////////////////////////////////////////////////////

Implementation

ZKFlower(double radius, [Color? color]) : super() {
  this.oriWidth = radius;
  this.oriHeight = radius;
  this._offset = Offset(0, 0);
  if (color != null) this.color = color;
}