equalId static method

bool equalId(
  1. List<int>? a,
  2. List<int>? b
)

Implementation

static bool equalId(List<int>? a, List<int>? b) {
  if (a == null || b == null) return false;
  for (var i = 0; i < 5; i++) {
    if (a[i] != b[i]) return false;
  }
  return true;
}