bool validatePart(String type) { if (expectedType.isNotEmpty) { return expectedType == type; } if (!isURType(type)) { return false; } expectedType = type; return true; }