unset method

Future<bool> unset({
  1. required String channelId,
})

Implementation

Future<bool> unset({required String channelId}) async {
  final httpResponse = await _rest.unset(channelId);

  if (httpResponse.response.statusCode == null) {
    throw Exception('Error unset watermark');
  }

  return httpResponse.response.statusCode! == 204;
}