showSheet<T> method
Shows a modal bottom sheet.
Implementation
Future<T?> showSheet<T>(Widget child, {bool isScrollControlled = false}) {
return showModalBottomSheet<T>(
context: this,
isScrollControlled: isScrollControlled,
builder: (_) => child,
);
}