LoadingButton constructor

const LoadingButton({
  1. required LoadingButtonType buttonType,
  2. required Future<void> onPressed()?,
  3. String? tooltip,
  4. required Widget child,
  5. ButtonStyle? style,
  6. Key? key,
})

Implementation

const LoadingButton(
    {required this.buttonType,
    required this.onPressed,
    this.tooltip,
    required this.child,
    this.style,
    super.key});