EmbedImagesView constructor

  1. @JsonSerializable(includeIfNull: false)
const EmbedImagesView({
  1. @Default('app.bsky.embed.images#view') String $type,
  2. @EmbedImagesViewImageConverter() required List<EmbedImagesViewImage> images,
  3. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory EmbedImagesView({
  @Default('app.bsky.embed.images#view') String $type,
  @EmbedImagesViewImageConverter() required List<EmbedImagesViewImage> images,

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