absoluteMonth property

int get absoluteMonth

Implementation

int get absoluteMonth {
  final ct = currentPushTime;
  return (absoluteYear * 12) + (ct.month - 1);
}