showAttachmentsView method
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);
}
}