IncompatibleProtocolException constructor

const IncompatibleProtocolException({
  1. List<int> clientVersions = kSupportedSetonixProtocolVersions,
  2. required List<int> serverVersions,
})

Implementation

const IncompatibleProtocolException({
  this.clientVersions = kSupportedSetonixProtocolVersions,
  required this.serverVersions,
});