OutBorderButton constructor

const OutBorderButton({
  1. Key? key,
  2. required dynamic onPress(),
  3. required String title,
  4. bool disable = false,
  5. double height = 44,
  6. double minWidth = 88,
  7. TextStyle? titleStyle,
  8. BoxDecoration? decoration,
  9. Color disableColor = const Color(0xff969799),
  10. Color borderColor = const Color(0xff1989FA),
})

Implementation

const OutBorderButton(
    {Key? key,
    required this.onPress,
    required this.title,
    this.disable = false,
    this.height = 44,
    this.minWidth = 88,
    this.titleStyle,
    this.decoration,
    this.disableColor = const Color(0xff969799),
    this.borderColor = const Color(0xff1989FA)})
    : super(key: key);