months property

Duration months

Return current int in Duration of month (30 days / month)

Implementation

Duration get months {
  return Duration(days: 30 * this);
}