removeTag static method

Future<bool?> removeTag(
  1. String tagName
)

Implementation

static Future<bool?> removeTag(String tagName) async {
  final bool? result =
      await _channel.invokeMethod('removeTag', {"tag": tagName});
  return result;
}