InlineImage constructor

const InlineImage({
  1. required String dataBase64,
  2. required InlineImageFormat format,
  3. String? filename,
  4. String? description,
  5. int? width,
  6. int? height,
  7. required InlineImageSource source,
  8. 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 {},
});