copy method

NiceScale copy({
  1. num? start,
  2. num? end,
  3. int? tickCount,
  4. num? step,
})

Implementation

NiceScale copy({num? start, num? end, int? tickCount, num? step}) {
  return NiceScale(
    start ?? this.start,
    end ?? this.end,
    step ?? this.step,
    tickCount ?? this.tickCount,
  );
}