height property

double get height

Implementation

double get height {
  if (_height != null) return _height!;
  if (months.isEmpty) return 0;
  _height = offset(months.last.month + 1);
  return _height!;
}