copyWith method

KoiLabelCircleElement copyWith({
  1. int? x,
  2. int? y,
  3. int? diameter,
  4. int? thickness,
})

Implementation

KoiLabelCircleElement copyWith({
  int? x,
  int? y,
  int? diameter,
  int? thickness,
}) {
  return KoiLabelCircleElement(
    x: x ?? this.x,
    y: y ?? this.y,
    diameter: diameter ?? this.diameter,
    thickness: thickness ?? this.thickness,
  );
}