SmoothTextButton constructor

const SmoothTextButton({
  1. Key? key,
  2. required String title,
  3. required bool? isLoading,
  4. required Color? backgroundColor,
  5. required bool? isActive,
  6. required VoidCallback? onPressed,
})

Implementation

const SmoothTextButton({
  Key? key,
  required this.title,
  required this.isLoading,
  required this.backgroundColor,
  required this.isActive,
  required this.onPressed,
}) : super(key: key);