trimmedHexValue property

String? trimmedHexValue

Returns hex representation of bytes contained in this memo until null byte (0x00) is found.

Implementation

String? get trimmedHexValue => this.hexValue!.split("00")[0];