YInkButton constructor

YInkButton(
  1. Widget? widget, {
  2. Color color = Colors.transparent,
  3. bool enable = true,
  4. bool isAnim = true,
  5. int? tapTime,
  6. required GestureTapCallback onTap,
})

Implementation

YInkButton(
  this.widget, {
  this.color = Colors.transparent,
  this.enable = true,
  this.isAnim = true,
  this.tapTime,
  required this.onTap,
});