create static method

Creates a new ParticipantStatusParameter when the value is not null

Implementation

static ParticipantStatusParameter? create(
  String name,
  ParticipantStatus? value,
) {
  if (value == null) {
    return null;
  }

  return ParticipantStatusParameter.value(name, value);
}