show static method

Future<void> show(
  1. BuildContext context, {
  2. required BankIncomeSorterController controller,
})

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),
    );