get method Null safety

String get(
  1. MetadataKey key
)

Implementation

String get(MetadataKey key) => _db.select('''
  SELECT $columnValue
  FROM $table
  WHERE $columnKey = "${key.value}";
  ''')[0][columnValue];