CustomOutlinedButton constructor
const
CustomOutlinedButton({})
Implementation
const CustomOutlinedButton({
super.key,
required super.text,
super.onTap,
Color? textColor,
Color? borderColor,
super.width,
super.height,
super.borderRadius,
}) : super(
textColor: textColor ?? Colors.blueAccent,
backgroundColor: Colors.transparent,
borderColor: borderColor ?? Colors.blueAccent,
showBorder: true,
);