YearsWidget constructor
YearsWidget({
- required ValueChanged<
int> onChanged, - int? init,
- String suffix = " 年",
- TextStyle style = const TextStyle(fontSize: 18.0),
Implementation
YearsWidget({
required this.onChanged,
this.init,
this.suffix = " 年",
this.style = const TextStyle(fontSize: 18.0),
});