LanguagePickerCupertino constructor

const LanguagePickerCupertino({
  1. Key? key,
  2. ValueChanged<Language>? onValuePicked,
  3. ItemBuilder? itemBuilder,
  4. double pickerItemHeight = defaultPickerItemHeight,
  5. double pickerSheetHeight = defaultPickerSheetHeight,
  6. TextStyle? textStyle,
  7. double? diameterRatio,
  8. Color? backgroundColor,
  9. double? offAxisFraction,
  10. bool? useMagnifier,
  11. double? magnification,
  12. FixedExtentScrollController? scrollController,
  13. List<Language>? languages,
})

Implementation

const LanguagePickerCupertino({
  Key? key,
  this.onValuePicked,
  this.itemBuilder,
  this.pickerItemHeight = defaultPickerItemHeight,
  this.pickerSheetHeight = defaultPickerSheetHeight,
  this.textStyle,
  this.diameterRatio,
  this.backgroundColor,
  this.offAxisFraction,
  this.useMagnifier,
  this.magnification,
  this.scrollController,
  this.languages,
}) : super(key: key);