newSubAccount method
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;
}