FlatSelection constructor
FlatSelection({
- Key? key,
- required List<
SelectionEntity> entityDataList, - dynamic confirmCallback()?,
- OnCustomFloatingLayerClick? onCustomFloatingLayerClick,
- int preLineTagSize = 3,
- bool isNeedConfigChild = true,
- FlatSelectionController? controller,
- SelectionConfig? themeData,
Implementation
FlatSelection(
{Key? key,
required this.entityDataList,
this.confirmCallback,
this.onCustomFloatingLayerClick,
this.preLineTagSize = 3,
this.isNeedConfigChild = true,
this.controller,
this.themeData})
: super(key: key) {
themeData ??= SelectionConfig();
themeData = BaseThemeConfig.instance
.getConfig(configId: themeData!.configId)
.selectionConfig
.merge(themeData!);
}