JasprServerDeployResult constructor

const JasprServerDeployResult({
  1. required bool success,
  2. String? serviceUrl,
  3. String? imageTag,
  4. String? serviceName,
  5. String? region,
  6. String message = '',
})

Implementation

const JasprServerDeployResult({
  required this.success,
  this.serviceUrl,
  this.imageTag,
  this.serviceName,
  this.region,
  this.message = '',
});