IconStepperItemStyle constructor

IconStepperItemStyle({
  1. IconThemeData? iconThemeData,
  2. BoxDecoration? boxDecoration = const BoxDecoration(color: Colors.white, shape: BoxShape.circle),
})

Implementation

IconStepperItemStyle({
  this.iconThemeData,
  this.boxDecoration = const BoxDecoration(
    color: Colors.white,
    shape: BoxShape.circle,
  ),
});