BtnTextWithLoading constructor

BtnTextWithLoading({
  1. Key? key,
  2. required String text,
  3. required dynamic onTap()?,
  4. Color color = Colors.blue,
  5. double textSize = 14,
  6. double width = 250,
  7. double height = 40,
})

Implementation

BtnTextWithLoading(
    {super.key,
    required this.text,
    required this.onTap,
    this.color = Colors.blue,
    this.textSize = 14,
    this.width = 250,
    this.height = 40});