KwikFormsHealthException constructor

KwikFormsHealthException({
  1. int status = 503,
  2. String error = 'ServiceUnavailable',
  3. String message = 'Kwikforms is unhealthy to make the API calls',
  4. String? timestamp,
  5. Object? cause,
})

Implementation

KwikFormsHealthException({
  this.status = 503,
  this.error = 'ServiceUnavailable',
  this.message = 'Kwikforms is unhealthy to make the API calls',
  String? timestamp,
  this.cause,
}) : timestamp = timestamp ?? DateTime.now().toIso8601String();