Writes an entry to a map, this is equivalent to calling writeKey followed by write.
Future<void> writeEntry(String key, Object? value) async { await writeKey(key); await write(value); }