hint property

int hint

Implementation

int get hint {
  //short link to crypted
  final digest = xxHash64.convert(_shortlink);

  final hst = digest.toString(); //0X12341234124
  final sma = HEX.decode(hst) as Uint8List;
  var b = new ByteData.view(sma.buffer);
  return b.getInt64(0);
}