fallback static method

ZeroSpeedDialStyle fallback({
  1. Color? activeColor,
  2. Color? inactiveColor,
  3. ZeroTooltipStyle? tooltipStyle,
})

Implementation

static ZeroSpeedDialStyle fallback({
  Color? activeColor,
  Color? inactiveColor,
  ZeroTooltipStyle? tooltipStyle,
}) =>
    ZeroSpeedDialStyle(
      activeColor: activeColor ?? Colors.white,
      inactiveColor: inactiveColor ?? activeColor ?? Colors.white,
      size: 56,
      spacing: 4,
      elevation: 4,
      shadowColor: Colors.black.withOpacity(0.75),
      borderRadius: BorderRadius.circular(28),
      tooltipStyle: tooltipStyle ?? ZeroTooltipStyle.fallback(),
    );