of static method

Implementation

static CartStepperStyle of(BuildContext context) {
  final theme = Theme.of(context);
  return theme.extension<CartStepperTheme>()?.style ??
      CartStepperStyle.fromColorScheme(theme.colorScheme);
}