trimmedHexValue property
Returns hex representation of bytes contained in this memo until null byte (0x00) is found.
Implementation
String get trimmedHexValue => this.hexValue.split("00")[0];
Returns hex representation of bytes contained in this memo until null byte (0x00) is found.
String get trimmedHexValue => this.hexValue.split("00")[0];