indexColumn method

String? indexColumn(
  1. String indexName
)

First (leading) column name of secondary index indexName, or null when there is no such index. Kept for the single-column callers that pre-date composite indexes; prefer indexColumns.

Implementation

String? indexColumn(String indexName) => _secondary[indexName]?.column;