MessageResponse constructor

MessageResponse({
  1. required String applicationId,
  2. Map<String, EndpointMessageResult>? endpointResult,
  3. String? requestId,
  4. Map<String, MessageResult>? result,
})

Implementation

MessageResponse({
  required this.applicationId,
  this.endpointResult,
  this.requestId,
  this.result,
});