copyWith method

MinRadiusScale copyWith({
  1. double? none,
  2. double? sm,
  3. double? md,
  4. double? lg,
  5. double? xl,
  6. double? xl2,
  7. double? full,
})

Implementation

MinRadiusScale copyWith({
  double? none,
  double? sm,
  double? md,
  double? lg,
  double? xl,
  double? xl2,
  double? full,
}) {
  return MinRadiusScale(
    none: none ?? this.none,
    sm: sm ?? this.sm,
    md: md ?? this.md,
    lg: lg ?? this.lg,
    xl: xl ?? this.xl,
    xl2: xl2 ?? this.xl2,
    full: full ?? this.full,
  );
}