getString method

String getString(
  1. String property
)

Get as string or empty if null

Implementation

String getString(String property)
{
  return get(property)?.asString() ?? ella.EMPTY_STRING;
}