EmbedGalleryImage constructor
const
EmbedGalleryImage({
- @Default.new('app.bsky.embed.gallery#image') String $type,
- @BlobConverter() required Blob image,
- required String alt,
- @AspectRatioConverter() required AspectRatio aspectRatio,
- Map<
String, dynamic> ? $unknown,
Implementation
@JsonSerializable(includeIfNull: false)
const factory EmbedGalleryImage({
@Default('app.bsky.embed.gallery#image') String $type,
@BlobConverter() required Blob image,
/// Alt text description of the image, for accessibility.
required String alt,
@AspectRatioConverter() required AspectRatio aspectRatio,
Map<String, dynamic>? $unknown,
}) = _EmbedGalleryImage;