iban constant

Pattern const iban

IBAN (International Bank Account Number) Supports general IBAN structure: 2 letters country code + 2 digits + up to 30 alphanumeric chars Example: GB82WEST12345698765432

Implementation

static const Pattern iban = r'^[A-Z]{2}[0-9]{2}[A-Z0-9]{11,30}$';