FdcGridPagingNavigator.numbered constructor
FdcGridPagingNavigator.numbered({})
Creates a FdcGridPagingNavigator.
Implementation
FdcGridPagingNavigator.numbered({
super.id,
super.visible,
super.placement = FdcGridItemPlacement.end,
this.visiblePageCount = 5,
this.showBoundaryPages = true,
this.showFirstLastButtons = false,
this.showPreviousNextButtons = true,
}) : _style = _FdcGridPageNavigatorStyle.numbered,
/// Label shown before the current page value.
pageLabel = '',
/// Label used when presenting the total page count.
pageCountLabel = '',
/// Allows direct page-number entry.
allowPageInput = false {
if (visiblePageCount <= 0) {
throw RangeError.value(
visiblePageCount,
'visiblePageCount',
'Must be greater than zero.',
);
}
}