ScrollPickerDialog<T> constructor
ScrollPickerDialog<T> ({
- String? title,
- required List<
T> items, - required T? selectedItem,
- Transformer<
T> ? transformer, - Color? headerColor,
- Color? headerTextColor,
- Color? backgroundColor,
- Color? buttonTextColor,
- double? maxLongSide,
- double? maxShortSide,
- bool showDivider = false,
- String? confirmText,
- String? cancelText,
- bool cancelButtonVisible = true,
Implementation
ScrollPickerDialog({
this.title,
required this.items,
required this.selectedItem,
this.transformer,
this.headerColor,
this.headerTextColor,
this.backgroundColor,
this.buttonTextColor,
this.maxLongSide,
this.maxShortSide,
this.showDivider = false,
this.confirmText,
this.cancelText,
this.cancelButtonVisible = true,
});