ItemInput constructor
ItemInput({
- String? id,
- Iterable<
DoubleInputParam> ? doubles, - Iterable<
LongInputParam> ? longs, - Iterable<
StringInputParam> ? strings,
Implementation
factory ItemInput({
$core.String? id,
$core.Iterable<DoubleInputParam>? doubles,
$core.Iterable<LongInputParam>? longs,
$core.Iterable<StringInputParam>? strings,
}) {
final _result = create();
if (id != null) {
_result.id = id;
}
if (doubles != null) {
_result.doubles.addAll(doubles);
}
if (longs != null) {
_result.longs.addAll(longs);
}
if (strings != null) {
_result.strings.addAll(strings);
}
return _result;
}