How to test the last and current 3 month date in the flutter. Is anyone having the solution for that.
RichText(
text: TextSpan(children: [
TextSpan(
text: DateTimeHelper.getFormattedDateTime(fromDate,
dateFormat: DateTimeHelper.dateOnlyText),
style: TextStyle(
fontSize: 16, fontWeight: FontWeight.w600)),
TextSpan(text: " to "),
TextSpan(
text: DateTimeHelper.getFormattedDateTime(toDate,
dateFormat: DateTimeHelper.dateOnlyText),
style: TextStyle(
fontSize: 16, fontWeight: FontWeight.w600)),
]),
),