XfdnFlatButton constructor

const XfdnFlatButton({
  1. Key? key,
  2. required String text,
  3. required VoidCallback? onPressed,
  4. Color borderColor = Colors.black,
  5. Color textColor = Colors.white,
  6. double? width,
})

Implementation

const XfdnFlatButton({
  super.key,
  required this.text,
  required this.onPressed,
  this.borderColor = Colors.black,
  this.textColor = Colors.white,
  this.width,
});