isOfficial property

bool isOfficial

Returns true if the code is official ISO-assigned

Implementation

bool get isOfficial {
  var n = _code & 0x3ff;
  return n > 0 && n < 900;
}