FastFieldOverlayContainer<T> constructor
const
FastFieldOverlayContainer<T> ({})
Creates a new instance of FastFieldOverlayContainer.
titleText
is the title of the header.
child
is the main content of the overlay container.
backIcon
, validIcon
, willClose
, and willValid
are
optional parameters.
Implementation
const FastFieldOverlayContainer({
super.key,
required this.titleText,
required this.child,
this.backIcon,
this.validIcon,
this.willClose,
this.willValid,
double? maxHeadlineWidth,
}) : maxHeadlineWidth = maxHeadlineWidth ?? 640;