SmoothTextButton constructor

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

Implementation

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