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