TriggerOrderComment constructor

TriggerOrderComment({
  1. required DateTime createdAt,
  2. required int id,
  3. required bool isRefuseReason,
  4. required int orderId,
  5. String? source,
  6. int? authorId,
  7. String? comment,
  8. String? externalAuthor,
})

Implementation

TriggerOrderComment({
  required this.createdAt,
  required this.id,
  required this.isRefuseReason,
  required this.orderId,
  this.source,
  this.authorId,
  this.comment,
  this.externalAuthor,
});