EmbeddedFile constructor

EmbeddedFile({
  1. required String filePath,
  2. String? description,
  3. String? contentType,
})

Creates an EmbeddedFile instance

Implementation

EmbeddedFile({
  required this.filePath,
  this.description,
  this.contentType,
});