show static method
Implementation
static Future<void> show(
BuildContext context, {
required BankIncomeSorterController controller,
}) =>
BankSheet.show<void>(
context,
// The sheet body paints its own ground and handle.
backgroundColor: Colors.transparent,
showHandle: false,
builder: (_) => BankIncomeSorterSheet(controller: controller),
);