showComingSoon function

void showComingSoon(
  1. BuildContext context, {
  2. String? featureName,
})

Implementation

void showComingSoon(BuildContext context, {String? featureName}) {
  showDialog(
    context: context,
    builder: (context) => ComingSoonDialog(featureName: featureName),
  );
}