SecondaryButton constructor

const SecondaryButton({
  1. Key? key,
  2. required String label,
  3. VoidCallback? onPressed,
  4. bool isLoading = false,
})

Implementation

const SecondaryButton({
  Key? key,
  required this.label,
  this.onPressed,
  this.isLoading = false,
}) : super(key: key);