RoundButton constructor

const RoundButton({
  1. required String label,
  2. VoidCallback? onPressed,
  3. Color? backgroundColor,
  4. bool? isLoading,
  5. Key? key,
})

Implementation

const RoundButton({
  required this.label,
  this.onPressed,
  this.backgroundColor,
  this.isLoading,
  super.key,
});