@override bool isValid(String? value) { String? v = strip(value); if (v == null || v.length != 7) return false; return format(v)?.length == 8; }