save method Null safety

void save(
  1. MetadataKey key,
  2. String value
)

Implementation

void save(MetadataKey key, String value) => _db.execute('''
  INSERT INTO $table
  VALUES ('${key.value}', '$value');
  ''');