monthsBetween static method

int monthsBetween(
  1. String firstRulesDate,
  2. String secondRulesDate
)

Implementation

static int monthsBetween(String firstRulesDate, String secondRulesDate) {
  final firstDate = _parseDate(firstRulesDate);
  final secondDate = _parseDate(secondRulesDate);
  return _differenceInMonths(secondDate, firstDate);
}