createWithActionText static method

ActionProperty? createWithActionText(
  1. String? value
)

Implementation

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