fallback static method

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

Implementation

static ZeroStepperStyle fallback({
  Color? dividerColor,
  double? elevation,
  EdgeInsetsGeometry? margin,
}) =>
    ZeroStepperStyle(
      dividerColor: dividerColor ?? ZeroColors.neutral,
      elevation: elevation ?? 0,
      margin: margin ?? const EdgeInsets.all(0),
    );