IbanEntity constructor

IbanEntity(
  1. String rawValue, {
  2. required String iban,
  3. required String countryCode,
})

Constructor to create an instance of IbanEntity.

Implementation

IbanEntity(String rawValue, {required this.iban, required this.countryCode})
    : super(rawValue: rawValue, type: EntityType.iban);