Encodes a nullable string value.
@override void encodeStringOrNull(String? value) { if (value == null) return; encodeString(value); }