uploadAttachment method

Future<Attachment> uploadAttachment(
  1. LocalAttachment attachment
)

Creates a new Attachment from the provided LocalAttachment linked to the authenticated MyUser for a later use in the sendChatMessage method.

Implementation

Future<Attachment> uploadAttachment(LocalAttachment attachment) async {
  Log.debug('uploadAttachment($attachment)', '$runtimeType');
  return await _chatRepository.uploadAttachment(attachment);
}