FlexiDate.of constructor

FlexiDate.of({
  1. int? day,
  2. int? month = 1,
  3. int? year,
  4. bool isAmbiguous = false,
})

Implementation

factory FlexiDate.of(
    {int? day, int? month = 1, int? year, bool isAmbiguous = false}) {
  return FlexiDateData(
      day: day, month: month, year: year, isAmbiguous: isAmbiguous);
}