showNormalDialog method

Future showNormalDialog(
  1. BuildContext context
)

Implementation

Future<dynamic> showNormalDialog(BuildContext context) async {
  return await showDialog(
      context: context,
      barrierDismissible: isForce == null || isForce == false,
      builder: (BuildContext context) => RUpgradeNormalDialog(info: this));
}