copyWith method

GutterTheme copyWith({
  1. double gutterCalc(
    1. double screenWidth
    )?,
  2. bool? enabled,
})

Implementation

GutterTheme copyWith(
        {double Function(double screenWidth)? gutterCalc, bool? enabled}) =>
    GutterTheme(
        gutterCalc: gutterCalc ?? this.gutterCalc,
        enabled: enabled ?? this.enabled);