newSubAccount method

Principal newSubAccount(
  1. Uint8List? subAccount
)

Implementation

Principal newSubAccount(Uint8List? subAccount) {
  if (subAccount == null || subAccount.eq(_emptySubAccount)) {
    return this;
  }
  if (this.subAccount == null || !this.subAccount!.eq(subAccount)) {
    return Principal(_principal, subAccount: subAccount);
  }
  return this;
}