CockpitRemoteBridgeResponse constructor

const CockpitRemoteBridgeResponse({
  1. required String requestId,
  2. required int statusCode,
  3. String contentType = 'application/json',
  4. Map<String, Object?>? jsonBody,
  5. String? bytesBase64,
})

Implementation

const CockpitRemoteBridgeResponse({
  required this.requestId,
  required this.statusCode,
  this.contentType = 'application/json',
  this.jsonBody,
  this.bytesBase64,
});