Statement.fromParts constructor Null safety

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

Creates a Statement 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 Statement.fromParts(List<Object> parts) =>
    Statement(_combineParts(parts));