RankRange_ constructor

RankRange_({
  1. int? startInclusive,
  2. int? endExclusive,
})

Implementation

factory RankRange_({
  $core.int? startInclusive,
  $core.int? endExclusive,
}) {
  final $result = create();
  if (startInclusive != null) {
    $result.startInclusive = startInclusive;
  }
  if (endExclusive != null) {
    $result.endExclusive = endExclusive;
  }
  return $result;
}