YearsMonthWidget constructor
YearsMonthWidget({})
Implementation
YearsMonthWidget({
@required this.onYearChanged,
@required this.onMonthChanged,
this.initByYear,
this.initByMonth,
this.suffixByYear = " 年",
this.suffixByMonth = " 月",
this.minYear = 1970,
this.maxYear = 2030,
this.style = const TextStyle(fontSize: 18.0),
}) : assert(onYearChanged != null);