array function

SchemaType array(
  1. SchemaType itemType
)

Creates a schema type representing an array of the given item type.

Implementation

SchemaType array(SchemaType itemType) {
  return SchemaType.array(itemType);
}