K4Lid constructor

K4Lid(
  1. Uint8List bytes
)

Implementation

K4Lid(Uint8List bytes) : super(bytes, PaserkKey.k4LidPrefix) {
  if (bytes.length != hashLength) {
    throw ArgumentError('K4Lid must be exactly $hashLength bytes');
  }
}