fromArray static method

ArrayValue fromArray(
  1. List<Object?> value
)

Creates a DataSchemaValue from a list of values.

Throws a FormatException if any element of the value list is not a valid DataSchemaValue.

Implementation

static ArrayValue fromArray(List<Object?> value) =>
    ArrayValue._fromValue(value);