FunctionProxy constructor
FunctionProxy(})
Implementation
FunctionProxy(
this.target, {
int? timeout,
this.trailing = false,
this.immediate = false,
this.id,
}) : timeout = timeout ?? 500 {
if (this.timeout < 0) {
throw ArgumentError.value(
this.timeout, 'timeout', 'must not be negative');
}
}