ModEventUnmute constructor

  1. @JsonSerializable(includeIfNull: false)
const ModEventUnmute({
  1. @Default(toolsOzoneModerationDefsModEventUnmute) @JsonKey(name: r'$type') String $type,
  2. String? comment,
  3. @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory ModEventUnmute({
  /// The unique namespace for this lex object.
  ///
  /// `tools.ozone.moderation.defs#modEventUnmute`
  @Default(toolsOzoneModerationDefsModEventUnmute)
  @JsonKey(name: r'$type')
  String $type,

  /// Describe reasoning behind the reversal.
  String? comment,

  /// Contains unknown objects not defined in Lexicon.
  @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
}) = _ModEventUnmute;