sendImageAttachment method

Future<void> sendImageAttachment({
  1. required File file,
})

Implementation

Future<void> sendImageAttachment({required File file}) async {
  await _repository.sendMessageImage(file);
}