showModal method

void showModal()

Implementation

void showModal() {
  WoltModalSheet.show(
    context: context,
    // minDialogWidth: minDialogWidth, //@todo
    pageListBuilder: (context) {
      return [
        WoltModalSheetPage(
            isTopBarLayerAlwaysVisible: topBar != null || topBarTitle != null,
            hasTopBarLayer: topBar != null || topBarTitle != null,
            topBar: topBar,
            topBarTitle: topBarTitle,
            child: content ?? Container()
        ),
      ];
    },
  );
}