operator [] method

JsonRow? operator [](
  1. T key
)

Returns the JsonRow with the specified key, or null if not found.

Implementation

JsonRow? operator [](T key) => _table.where((row) => changeTo(row[keyName]) == key).singleOrNull;