DurationPickerControl constructor

DurationPickerControl({
  1. Key? key,
  2. JsonPath? basePath,
  3. ValueChanged<TimeSpan>? onChange,
  4. TimeSpan? initialValue,
})

Implementation

DurationPickerControl(
    {Key? key, this.basePath, this.onChange, this.initialValue})
    : super(key: key ?? Key("durationPicker-${basePath?.toKey()}"));