SocketError constructor

SocketError({
  1. int? errorType,
  2. String? statusMessage,
  3. String? errorMessage = 'Unexpected socket error. Please contact your system administrator',
  4. String? errorDetail,
  5. String? data,
  6. String? errorLocationId,
})

Implementation

SocketError(
    {this.errorType,
    this.statusMessage,
    String? errorMessage =
        'Unexpected socket error. Please contact your system administrator',
    String? errorDetail,
    String? data,
    String? errorLocationId})
    : super(
          errorMessage: errorMessage,
          errorDetail: errorDetail,
          data: data,
          errorLocationId: errorLocationId
        );