IdentifyException constructor

IdentifyException({
  1. PeerId? peerId,
  2. required String message,
  3. Object? cause,
})

Implementation

IdentifyException({
  this.peerId,
  required this.message,
  this.cause,
});