sort method Null safety
- num other
Implementation
Tuple<num, num> sort(num other) {
return (this > other) ? Tuple(other, this) : Tuple(this, other);
}
Tuple<num, num> sort(num other) {
return (this > other) ? Tuple(other, this) : Tuple(this, other);
}