InlineImage constructor
const
InlineImage({
- required String dataBase64,
- required InlineImageFormat format,
- String? filename,
- String? description,
- int? width,
- int? height,
- required InlineImageSource source,
- Map<
String, String> attributes = const {},
Creates a new InlineImage instance.
Implementation
const InlineImage({
required this.dataBase64,
required this.format,
this.filename,
this.description,
this.width,
this.height,
required this.source,
this.attributes = const {},
});