create static method

Implementation

static EventBusyStatusProperty? create(EventBusyStatus? value) {
  if (value == null) {
    return null;
  }
  return EventBusyStatusProperty.value(value);
}