interval property
deno-postgres@v0.17.0/ConnectionOptions.
Either this or nextInterval is null.
Implementation
int? get interval {
final prop = getProperty(this, 'interval');
return prop is int ? prop : null;
}
deno-postgres@v0.17.0/ConnectionOptions.
Either this or nextInterval is null.
int? get interval {
final prop = getProperty(this, 'interval');
return prop is int ? prop : null;
}