ConnectionCloseFrame constructor

ConnectionCloseFrame({
  1. required int errorCode,
  2. int frameType = 0,
  3. String reasonPhrase = '',
})

Implementation

ConnectionCloseFrame({
  required this.errorCode,
  this.frameType = 0,
  this.reasonPhrase = '',
}) : super(FrameType.connectionClose);