copyWith method
Creates a copy of this GutterTheme with the given fields replaced.
Implementation
GutterTheme copyWith(
{double Function(double screenWidth)? gutterCalc, bool? enabled}) =>
GutterTheme(
gutterCalc: gutterCalc ?? this.gutterCalc,
enabled: enabled ?? this.enabled);