removePersistentLabel method

Future<void> removePersistentLabel(
  1. String name
)

Removes an specific persistent label using the name. @param name Name of the label to remove

Implementation

Future<void> removePersistentLabel(String name) {
  return methodChannel.invokeMethod('removePersistentLabel', {Args.labelName: name});
}