FlutlyButton constructor

FlutlyButton({
  1. Key? key,
  2. required ButtonType? buttonType,
  3. required Function onTap,
  4. Widget? child,
  5. FlutlyButtonApperiances? apperiances,
  6. String? text,
})

Implementation

FlutlyButton({
  super.key,
  required this.buttonType,
  required this.onTap,
  this.child,
  this.apperiances,
  this.text,
});