ProxyMessage<T> constructor

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

Implementation

const ProxyMessage({
  this.error,
  this.response,
  this.args,
  super.id,
  super.type,
});