getKey function

String getKey(
  1. int i,
  2. int j
)

Implementation

String getKey(int i, int j){
  return (i < j ? '$i-$j' : '$j-$i');
}