encodeStringOrNull method
Encodes a nullable string value for the given key or id.
Implementation
@override
void encodeStringOrNull(String key, String? value, {int? id}) {
_parent._writeObjectKey(key);
_parent.encodeStringOrNull(value);
}
Encodes a nullable string value for the given key or id.
@override
void encodeStringOrNull(String key, String? value, {int? id}) {
_parent._writeObjectKey(key);
_parent.encodeStringOrNull(value);
}