copyWith method
Implementation
ZeroStepperStyle copyWith({
Color? dividerColor,
double? elevation,
EdgeInsetsGeometry? margin,
}) =>
ZeroStepperStyle(
dividerColor: dividerColor ?? this.dividerColor,
elevation: elevation ?? this.elevation,
margin: margin ?? this.margin,
);