IButton constructor

const IButton({
  1. Key? key,
  2. Function? onTap,
  3. FeedbackType? feedbackType,
  4. required Widget child,
})

Implementation

const IButton({
  Key? key,
  this.onTap,
  this.feedbackType,
  required this.child,
}) : super(key: key);