OutlinedRoundedButton constructor

const OutlinedRoundedButton(
  1. String text, {
  2. Key? key,
  3. required Function onPressed,
  4. double? width,
  5. double? height,
  6. Color? color,
  7. Color? textColor,
  8. IconData? icon,
  9. double? iconSize,
  10. Color? iconColor,
  11. ValueNotifier<BoxShadow>? shadow,
})

Creates an OutlinedRoundedButton widget.

The text and onPressed parameters must not be null.

Implementation

const OutlinedRoundedButton(
  String text, {
  super.key,
  required super.onPressed,
  super.width,
  super.height,
  super.color,
  super.textColor,
  super.icon,
  super.iconSize,
  super.iconColor,
  super.shadow,
}) : super(text: text);