add method

Implementation

@override
bool add(RoadEventDisplayCategory value) {
  if (this.contains(value)) {
    return false;
  }
  this.rawValue = this.rawValue | value.rawValue;
  return true;
}