RepoViewNotFound constructor
- @JsonSerializable(includeIfNull: false)
const
RepoViewNotFound(
{ - @Default(toolsOzoneModerationDefsRepoViewNotFound) @JsonKey(name: r'$type') String $type,
- required String did,
- @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory RepoViewNotFound({
/// The unique namespace for this lex object.
///
/// `tools.ozone.moderation.defs#repoViewNotFound`
@Default(toolsOzoneModerationDefsRepoViewNotFound)
@JsonKey(name: r'$type')
String $type,
required String did,
/// Contains unknown objects not defined in Lexicon.
@JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
}) = _RepoViewNotFound;