toHexString method

dynamic toHexString()

Implementation

toHexString(){
  return value.toRadixString(16).padLeft(8, '0');
}