create static method

RequestStatusProperty? create(
  1. String? value
)
override

Implementation

static RequestStatusProperty? create(String? value) {
  if (value == null) {
    return null;
  }
  return RequestStatusProperty('$propertyName:$value');
}