ScoreRange_ constructor
ScoreRange_({
- Unbounded_? unboundedMin,
- double? minInclusive,
- Unbounded_? unboundedMax,
- double? maxExclusive,
Implementation
factory ScoreRange_({
Unbounded_? unboundedMin,
$core.double? minInclusive,
Unbounded_? unboundedMax,
$core.double? maxExclusive,
}) {
final $result = create();
if (unboundedMin != null) {
$result.unboundedMin = unboundedMin;
}
if (minInclusive != null) {
$result.minInclusive = minInclusive;
}
if (unboundedMax != null) {
$result.unboundedMax = unboundedMax;
}
if (maxExclusive != null) {
$result.maxExclusive = maxExclusive;
}
return $result;
}