sentGalleryImage method

dynamic sentGalleryImage(
  1. int imageQuality
)

Implementation

sentGalleryImage(int imageQuality) async {
  setBusy(true);
  String image =
      await pickImage('CommunityChatRoom', ImageSource.gallery, imageQuality);
  if (image.isNotEmpty) {
    sentFile(url: image);
  }
  setBusy(false);
}