copyWith method

Debounce copyWith({
  1. Duration? delay,
})

Creates a copy of this Debounce with the given fields replaced.

Implementation

Debounce copyWith({Duration? delay}) => Debounce(delay ?? this.delay);