getByMonthDay method

List<int> getByMonthDay()

Implementation

List<int> getByMonthDay() {
  List<String> stringDays = data['BYMONTHDAY'].toString().split(',');
  List<int> monthDays = stringDays.map((e) => int.parse(e.toString())).toList();
  return monthDays;
}