KeyInfo constructor

KeyInfo(
  1. {required String participantId,
  2. required int keyIndex,
  3. required Uint8List key}
)

Implementation

KeyInfo({
  required this.participantId,
  required this.keyIndex,
  required this.key,
});