getKey method

T getKey(
  1. JsonRow row
)

Returns the value associated with the specified key in the JsonRow. The key must be of type T.

Implementation

T getKey(JsonRow row) => row[keyName] as T;