PeerId constructor
PeerId({
- required Uint8List value,
Implementation
PeerId({required super.value}) {
if (value.length != length) {
throw const FormatException('PeerId length is invalid.');
}
}