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