getShorterString method

String getShorterString(
  1. String selectedAccountAddress
)

Implementation

String getShorterString(String selectedAccountAddress) {
  if (this.from != selectedAccountAddress) {
    return new Address(this.from).getShorterString();
  } else {
    return new Address(this.to).getShorterString();
  }
}