ontology_dart_sdk
common
Convert
hexStrToStr method
hexStrToStr
Convert class
Constructors
Convert
Properties
hashCode
runtimeType
Methods
noSuchMethod
toString
Operators
operator ==
Static methods
base64ToBytes
bigIntToBytes
bytesToBase64
bytesToBigInt
bytesToHexStr
bytesToStr
hexStrToBigInt
hexStrToBytes
hexStrToStr
strToBytes
hexStrToStr method
String
hexStrToStr
(
String
hex
)
Implementation
static String hexStrToStr(String hex) { var bytes = hexStrToBytes(hex); return bytesToStr(bytes); }