FormDurationFieldPicker constructor

const FormDurationFieldPicker({
  1. Duration? defaultDuration,
  2. String minuteSuffix = "",
  3. String secondSuffix = "",
  4. String hourSuffix = "",
  5. String daySuffix = "",
  6. Color? backgroundColor,
  7. Color? color,
  8. Duration? begin,
  9. Duration? end,
  10. String confirmText = "Confirm",
  11. String cancelText = "Cancel",
})

Class that defines the picker style for selecting spacing.

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

Implementation

const FormDurationFieldPicker({
  this.defaultDuration,
  this.minuteSuffix = "",
  this.secondSuffix = "",
  this.hourSuffix = "",
  this.daySuffix = "",
  this.backgroundColor,
  this.color,
  this.begin,
  this.end,
  this.confirmText = "Confirm",
  this.cancelText = "Cancel",
});