stadium method

Widget stadium({
  1. Color? background,
  2. EdgeInsets? padding,
})

Implementation

Widget stadium({Color? background, EdgeInsets? padding}) => Container(
      padding: padding ?? const EdgeInsets.symmetric(vertical: 2, horizontal: 6),
      decoration: ShapeDecoration(shape: const StadiumBorder(), color: background ?? Colors.deepPurpleAccent, shadows: const []),
      child: this,
    );