show static method
Show selector as bottom sheet
Implementation
static void show(
BuildContext context, {
String? title,
TextStyle? titleStyle,
TextStyle? optionStyle,
}) {
showModalBottomSheet(
context: context,
backgroundColor: Colors.transparent,
builder: (context) => CyberLanguageSelector(
title: title,
titleStyle: titleStyle,
optionStyle: optionStyle,
),
);
}