BigOutlineButton constructor

const BigOutlineButton({
  1. Key? key,
  2. String? title,
  3. Color? lineColor,
  4. Color? textColor,
  5. bool isEnable = true,
  6. double? width,
  7. VoidCallback? onTap,
  8. ButtonConfig? themeData,
})

Implementation

const BigOutlineButton({
  Key? key,
  this.title,
  this.lineColor,
  this.textColor,
  this.isEnable = true,
  this.width,
  this.onTap,
  this.themeData,
}) : super(key: key);