ArtButton constructor

const ArtButton({
  1. Key? key,
  2. Color bgColor = const Color.fromRGBO(117, 117, 117, 1),
  3. Icon? btnIcon,
  4. Function? onTab,
  5. String btnText = "OK",
  6. TextStyle? btnTextStyle,
  7. double fontSize = 15,
})

Implementation

const ArtButton(
    {Key? key,
    this.bgColor = const Color.fromRGBO(117, 117, 117, 1),
    this.btnIcon,
    this.onTab,
    this.btnText = "OK",
    this.btnTextStyle,
    this.fontSize = 15})
    : super(key: key);