LoggingStatus constructor

LoggingStatus({
  1. String? bucketName,
  2. String? lastFailureMessage,
  3. DateTime? lastFailureTime,
  4. DateTime? lastSuccessfulDeliveryTime,
  5. bool? loggingEnabled,
  6. String? s3KeyPrefix,
})

Implementation

LoggingStatus({
  this.bucketName,
  this.lastFailureMessage,
  this.lastFailureTime,
  this.lastSuccessfulDeliveryTime,
  this.loggingEnabled,
  this.s3KeyPrefix,
});