BigMainButton constructor

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

Implementation

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