fallback static method

ZeroDividerStyle fallback({
  1. Color? color,
})

A default value style of ZeroDividerStyle

Implementation

static ZeroDividerStyle fallback({Color? color}) => ZeroDividerStyle(
      color: color ?? ZeroColors.neutral[7],
      size: 1,
      startInset: 16,
      endInset: 16,
    );