YearsWidget constructor

YearsWidget({
  1. required ValueChanged<int> onChanged,
  2. int? init,
  3. String suffix = " 年",
  4. TextStyle style = const TextStyle(fontSize: 18.0),
})

Implementation

YearsWidget({
  required this.onChanged,
  this.init,
  this.suffix = " 年",
  this.style = const TextStyle(fontSize: 18.0),
});