checkBusyStatusForForward method

dynamic checkBusyStatusForForward(
  1. BuildContext context
)

Implementation

checkBusyStatusForForward(BuildContext context) async {
  var busyStatus = await Mirrorfly.isBusyStatusEnabled();
  if (!busyStatus.checkNull()) {
    if (context.mounted) forwardMessage(context);
  } else {
    if (context.mounted) showBusyStatusAlert(forwardMessage, context);
  }
}