previousMonth method

DateTime previousMonth()

Create a new date with previous month values.

Implementation

DateTime previousMonth() => _copyWith(month: month - 1);