FxOverlayView<T> constructor
FxOverlayView<T> ({
- Key? key,
- bool isScrollable = true,
- bool showTitle = true,
- required FxOverlayData<
T> data, - required ScrollController scrollController,
Implementation
FxOverlayView({
super.key,
this.isScrollable = true,
this.showTitle = true,
required this.data,
required this.scrollController,
});