show method

Future<List<T>?> show()

Implementation

Future<List<T>?> show() {
  return SmartDialog.show(
    builder: (context) => this,
    useSystem: true,
    clickMaskDismiss: false,
    alignment: Alignment.bottomCenter,
  );
}