ellipsisWalletAddress method
Implementation
String ellipsisWalletAddress() {
if (length < 20) {
return this;
}
return '${substring(0, 13)}...${substring(length - 13)}';
}
String ellipsisWalletAddress() {
if (length < 20) {
return this;
}
return '${substring(0, 13)}...${substring(length - 13)}';
}