resultSet property

ParsedRowBuffer? get resultSet

Backward-compatible accessor: returns the result set if this is a MultiResultItemResultSet, otherwise null.

Implementation

ParsedRowBuffer? get resultSet => switch (this) {
      MultiResultItemResultSet(:final value) => value,
      MultiResultItemRowCount() => null,
      _LegacyMultiResultItem(:final resultSetField) => resultSetField,
    };