ServerException constructor

const ServerException({
  1. String? message,
  2. int? error,
})

Implementation

const ServerException({
  super.message,
  super.error,
});