show method

Future show(
  1. BuildContext context
)

Implementation

Future<dynamic> show(BuildContext context) {
  return showModalBottomSheet(
    context: context,
    builder: (context) => this,
  );
}