downloadAttachment method

Future<String?> downloadAttachment(
  1. Attachment attachment, {
  2. ProgressCallback? onReceiveProgress,
  3. Map<String, dynamic>? queryParameters,
  4. CancelToken? cancelToken,
  5. Options? options,
})
inherited

Downloads the attachment to the device and returns the path to the file.

Implementation

Future<String?> downloadAttachment(
  Attachment attachment, {
  ProgressCallback? onReceiveProgress,
  Map<String, dynamic>? queryParameters,
  CancelToken? cancelToken,
  Options? options,
}) {
  throw UnimplementedError('downloadAttachment is not implemented');
}