DoubleParam constructor
DoubleParam({
- String? key,
- Iterable<
DoubleWeightRange> ? weightRanges, - String? program,
Implementation
factory DoubleParam({
$core.String? key,
$core.Iterable<DoubleWeightRange>? weightRanges,
$core.String? program,
}) {
final _result = create();
if (key != null) {
_result.key = key;
}
if (weightRanges != null) {
_result.weightRanges.addAll(weightRanges);
}
if (program != null) {
_result.program = program;
}
return _result;
}