FormDateFieldPicker constructor

const FormDateFieldPicker({
  1. DateTime? defaultDateTime,
  2. String monthSuffix = "",
  3. String daySuffix = "",
  4. String monthFormat = "MM",
  5. Color? backgroundColor,
  6. Color? color,
  7. String confirmText = "Confirm",
  8. String cancelText = "Cancel",
})

Class that defines a picker style for selecting dates.

日付を選択するためのピッカースタイルを定義するクラス。

Implementation

const FormDateFieldPicker({
  this.defaultDateTime,
  this.monthSuffix = "",
  this.daySuffix = "",
  this.monthFormat = "MM",
  this.backgroundColor,
  this.color,
  this.confirmText = "Confirm",
  this.cancelText = "Cancel",
});