removePersistentLabel method
Removes an specific persistent label using the name. @param name Name of the label to remove
Implementation
Future<void> removePersistentLabel(String name) {
var args = buildArguments();
args[Args.labelName] = name;
return _methodChannel.invokeMethod('removePersistentLabel', args);
}