ResendAttachment constructor

const ResendAttachment({
  1. required List<int> content,
  2. String? filename,
})

Implementation

const factory ResendAttachment({
  /// Content of an attached file
  required List<int> content,

  /// Name of attached file
  String? filename,
}) = _ResendAttachment;