copyWith method
Implementation
InteractiveEnabledGestures copyWith({
bool? tap,
bool? longPress,
bool? drag,
bool? hover,
}) {
return InteractiveEnabledGestures(
tap: tap ?? this.tap,
longPress: longPress ?? this.longPress,
drag: drag ?? this.drag,
hover: hover ?? this.hover,
);
}