interval property

int? interval

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;
}