DbLensConfig constructor
const
DbLensConfig({})
Implementation
const DbLensConfig({
this.pageSize = defaultPageSize,
this.enablePrefetch = true,
this.enableHistory = true,
this.historyPollInterval = defaultHistoryPollInterval,
this.presentationMode = DbLensPresentationMode.bottomSheet,
this.fullscreenDialog = true,
}) : assert(
pageSize >= 1 && pageSize <= maxPageSize,
'pageSize must be between 1 and $maxPageSize',
);