setValueType method

void setValueType(
  1. dynamic value
)

Sets the type of array elements. Null means that elements may have any type.

  • value a type of array elements.

Implementation

void setValueType(dynamic value) {
  _valueType = value;
}