create static method

UriProperty? create(
  1. String propertyName,
  2. Uri? value
)

Implementation

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