FxOverlayView<T> constructor

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

Implementation

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