LogMessage constructor

const LogMessage({
  1. required String type,
  2. String? subtype,
  3. String? slug,
  4. String? planContent,
  5. Map<String, dynamic>? message,
  6. Map<String, dynamic>? attachment,
  7. List<FileSnapshotEntry>? snapshotFiles,
})

Implementation

const LogMessage({
  required this.type,
  this.subtype,
  this.slug,
  this.planContent,
  this.message,
  this.attachment,
  this.snapshotFiles,
});