electronicFormat static method

String electronicFormat(
  1. String iban
)

Implementation

static String electronicFormat(String iban) {
  return iban.replaceAll(RegExp(NON_ALPHANUM), "").toUpperCase();
}