EndpointNameTooLongException constructor

const EndpointNameTooLongException({
  1. required int actualLength,
  2. required int maxLength,
  3. required String encoded,
})

Implementation

const EndpointNameTooLongException({
  required this.actualLength,
  required this.maxLength,
  required this.encoded,
});