getByMonthDay method

List<int> getByMonthDay()

Implementation

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