parse method
The parser for the response, to be implemented by each subclass.
Implementation
@override
String parse(dynamic data) {
if (data is String) {
return data;
}
throw ValkeyException(
'Invalid response for CLIENT HELP: expected a string, got ${data.runtimeType}',
);
}