ProxyMessageStatusResponse constructor

const ProxyMessageStatusResponse({
  1. dynamic error,
  2. Map? response,
  3. List? args,
  4. int? id,
  5. String? type = ProxyMessageKind.statusResponse,
})

Implementation

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