TapSuccess constructor

const TapSuccess({
  1. required String widgetType,
  2. required dynamic x,
  3. required dynamic y,
  4. String? warning,
})

Implementation

const TapSuccess({
  required this.widgetType,
  required this.x,
  required this.y,
  this.warning,
});