first method
The first positional value
Implementation
String? first() {
if (hasPositinalParams()) {
return positionalValues[0];
} else {
return null;
}
}
The first positional value
String? first() {
if (hasPositinalParams()) {
return positionalValues[0];
} else {
return null;
}
}