FxOverlayView<T> constructor

FxOverlayView<T>({
  1. Key? key,
  2. bool isScrollable = true,
  3. bool showTitle = true,
  4. required FxOverlayData<T> data,
  5. required ScrollController scrollController,
})

Implementation

FxOverlayView({
	super.key,
	this.isScrollable = true,
	this.showTitle = true,
	required this.data,
	required this.scrollController,
});