AnyValueArray constructor

AnyValueArray([
  1. Iterable? values
])

Creates a new instance of the array and assigns its value.

  • value (optional) values to initialize this array.

Implementation

AnyValueArray([Iterable? values]) : _values = [] {
  if (values != null) {
    _values.addAll(values);
  }
}