show<T> static method
Implementation
static Future<T?> show<T>(BuildContext context, {required Widget child, String? title}) {
return showModalBottomSheet<T>(
context: context,
backgroundColor: Colors.transparent,
isScrollControlled: true,
builder: (_) => Theme(
data: arsenalDarkTheme,
child: _ArBottomSheetContent(title: title, child: child),
),
);
}