xGroupDestroy method
XGROUP DESTROY key group
Destroys a consumer group. Returns: 1 if destroyed, 0 if not found.
Implementation
Future<int> xGroupDestroy(String key, String group) async {
final cmd = <String>['XGROUP', 'DESTROY', key, group];
return executeInt(cmd);
}