AccountNumber.fromInt constructor

AccountNumber.fromInt(
  1. int? account
)

Implementation

AccountNumber.fromInt(int? account) {
  this.account = account;
  this.checksum = AccountNumber.calculateChecksum(this.account!);
  calcBlockInfo();
}