copyWith method

ZeroStepperStyle copyWith({
  1. Color? dividerColor,
  2. double? elevation,
  3. EdgeInsetsGeometry? margin,
})

Implementation

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