showMeetBottomSheet method
Implementation
Future<void> showMeetBottomSheet(
MeetBottomSheetStyle meetBottomSheetStyle) async {
if (await AppUtils.isNetConnected()) {
DialogUtils.bottomSheet(
MeetSheetView(
title: getTranslated("instantMeet"),
description: getTranslated("copyTheLink"),
meetBottomSheetStyle: meetBottomSheetStyle,
),
ignoreSafeArea: true,
backgroundColor: Colors.white,
barrierColor: Colors.black.withOpacity(0.5),
);
} else {
toToast(getTranslated("noInternetConnection"));
}
}