TkfButton constructor

const TkfButton({
  1. Key? key,
  2. required Key testKey,
  3. Function? onClick,
  4. required bool isLoading,
  5. ButtonStyle? style,
  6. required String text,
})

Implementation

const TkfButton(
    {super.key,
    required this.testKey,
    this.onClick,
    required this.isLoading,
    this.style,
    required this.text});