removeStartLabel method

Future<void> removeStartLabel(
  1. String name
)

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

Implementation

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