ModEventComment constructor

  1. @JsonSerializable(includeIfNull: false)
const ModEventComment({
  1. @Default('tools.ozone.moderation.defs#modEventComment') String $type,
  2. String? comment,
  3. bool? sticky,
  4. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory ModEventComment({
  @Default('tools.ozone.moderation.defs#modEventComment') String $type,
  String? comment,

  /// Make the comment persistent on the subject
  bool? sticky,

  Map<String, dynamic>? $unknown,
}) = _ModEventComment;