isParameterAssigned method
Whether name was explicitly set on this instance, as opposed to left
at the sidecar default. Throws ArgumentError if name is not a
declared parameter.
Implementation
bool isParameterAssigned(String name) {
_slot(name, null);
return _assigned.containsKey(name);
}