RxElevatedButton constructor

RxElevatedButton({
  1. Key? key,
  2. required RxCommand<BuildContext, void> rxCommand,
  3. Widget? child,
  4. VoidCallback? onLongPress,
  5. ValueChanged<bool>? onHover,
  6. ValueChanged<bool>? onFocusChange,
  7. ButtonStyle? style,
  8. FocusNode? focusNode,
  9. bool autofocus = false,
  10. MaterialStatesController? statesController,
})

Implementation

RxElevatedButton({
  Key? key,
  required this.rxCommand,
  this.child,
  this.onLongPress,
  this.onHover,
  this.onFocusChange,
  this.style,
  this.focusNode,
  this.autofocus = false,
  this.statesController,
}) : super(key: key);