removeTags method

Future removeTags(
  1. dynamic tags
)

Implementation

Future<dynamic> removeTags(tags) async {
  if (tags == null || tags.length == 0) {
    throw new Exception(
        "tags is invalid. Please provide a valid tag for removeTags");
  }
  return _channel.invokeMethod("removeTags", <String, dynamic>{'tags': tags});
}