createNumeric static method

PriorityProperty? createNumeric(
  1. int? value
)

Implementation

static PriorityProperty? createNumeric(int? value) {
  if (value == null) {
    return null;
  }
  return PriorityProperty('$propertyName:$value');
}