getDateNext method

LunarDateTime getDateNext(
  1. int rangeDays
)

Get the Lunar Date after rangeDays You can pass the negative for date before.

Implementation

LunarDateTime getDateNext(int rangeDays) {
  return FullCalenderExtension.getLunarDateNext(
      fromDate: this, rangeDays: rangeDays)!;
}