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