digest property

String digest
latefinal

Implementation

late final String digest = base64.encode(sha1
    .convert([
      ..._nonce.bytes,
      ...utf8.encode(timeStamp),
      ...utf8.encode(password)
    ].toList())
    .bytes);