factory Array({ $core.Iterable<Value>? data, }) { final _result = create(); if (data != null) { _result.data.addAll(data); } return _result; }