BasePickerTitleConfig constructor

const BasePickerTitleConfig({
  1. Widget? cancel,
  2. String cancelLocalized = "Cancel",
  3. Widget? confirm,
  4. String confirmLocalized = "Confirm",
  5. Widget? title,
  6. String titleLocalized = "",
  7. bool showTitle = true,
  8. String? titleContent,
})

Implementation

const BasePickerTitleConfig({
  this.cancel,
  this.cancelLocalized = "Cancel",
  this.confirm,
  this.confirmLocalized = "Confirm",
  this.title,
  this.titleLocalized = "",
  this.showTitle = true,
  this.titleContent,
});