toEmbedImage method
Returns the single UPostEmbed image representation of this blob.
Implementation
UPostEmbed toEmbedImage({
required String alt,
AspectRatio? aspectRatio,
}) =>
UPostEmbed.images(
data: Images(
images: [
toImage(
alt: alt,
aspectRatio: aspectRatio,
),
],
),
);