showAttachmentsView method

dynamic showAttachmentsView(
  1. BuildContext context
)

Implementation

showAttachmentsView(BuildContext context) async {
  var busyStatus = !profile.isGroupProfile.checkNull()
      ? await Mirrorfly.isBusyStatusEnabled()
      : false;
  if (!busyStatus.checkNull()) {
    focusNode.unfocus();
    showBottomSheetAttachment();
  } else {
    //show busy status popup
    showBusyStatusAlert(showBottomSheetAttachment);
  }
}