get method

dynamic get(
  1. int i,
  2. int j
)

Implementation

dynamic get(int i, int j){
  final key = getKey(i, j);
  return data[key];
}