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