Parameter.fromParts constructor Null safety

Parameter.fromParts(
  1. List<Object> parts
)

Creates a Parameter from parts, which must be of type Code List<Code> or String.

When a List<Code> is encountered they are joined by a comma.

Implementation

factory Parameter.fromParts(List<Object> parts) =>
    Parameter(_combineParts(parts));