ProxyMessageError<T> constructor

const ProxyMessageError<T>({
  1. dynamic error,
  2. T? response,
  3. List? args,
  4. int? id,
  5. String? type = ProxyMessageKind.error,
})

Implementation

const ProxyMessageError({
  super.error,
  super.response,
  super.args,
  super.id,
  super.type = ProxyMessageKind.error,
});