first method

String? first()

The first positional value

Implementation

String? first() {
  if (hasPositinalParams()) {
    return positionalValues[0];
  } else {
    return null;
  }
}