LittleActionButton constructor

const LittleActionButton(
  1. {Key? key,
  2. required VoidCallback onTap,
  3. required Widget child,
  4. Color? buttonColor,
  5. bool loadingButton = true,
  6. Color? borderColor}
)

Implementation

const LittleActionButton({
  Key? key,
  required this.onTap,
  required this.child,
  this.buttonColor,
  this.loadingButton = true,
  this.borderColor,
}) : super(key: key);