remove method

Implementation

@override
bool remove(RouteMapObjectCalloutLabelFlag value) {
  if (!this.contains(value)) {
    return false;
  }
  this.rawValue = this.rawValue & ~value.rawValue;
  return true;
}