PickerOptions<T> constructor

const PickerOptions<T>({
  1. Widget? top,
  2. Widget? cancel,
  3. Widget? title,
  4. Widget? confirm,
  5. Widget? bottom,
  6. Widget? bottomNavigationBar,
  7. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(horizontal: 10),
  8. EdgeInsetsGeometry? contentPadding,
  9. Color? backgroundColor,
  10. Widget? background,
  11. Decoration? decoration,
  12. PickerTapCallback<T>? verifyConfirm,
  13. PickerTapCallback<T>? verifyCancel,
})

Implementation

const PickerOptions({
  this.top,
  this.cancel,
  this.title,
  this.confirm,
  this.bottom,
  this.bottomNavigationBar,
  this.padding = const EdgeInsets.symmetric(horizontal: 10),
  this.contentPadding,
  this.backgroundColor,
  this.background,
  this.decoration,
  this.verifyConfirm,
  this.verifyCancel,
});