ILibDateOptions constructor

ILibDateOptions({
  1. String? locale,
  2. int? year,
  3. int? month,
  4. int? day,
  5. int? hour,
  6. int? minute,
  7. int? second,
  8. int? millisecond,
  9. int? unixtime,
  10. String? timezone,
  11. String? calendar,
  12. DateTime? dateTime,
  13. String? type,
})

locale Locales are specified either with a specifier string that follows the BCP-47 convention, year The year month The month day The day of the month hour The hour of the day minute The minute 0..59 second The second 0..59 millisecond The millisecond 0..999 unixtime Sets the time of this instance according to the given unix time. timezone Time zone name as a string calendar Same as "type" property dateTime DateTime class of flutter type Specifies the type/calendar of the date desired.

Implementation

ILibDateOptions(
    {this.locale,
    this.year,
    this.month,
    this.day,
    this.hour,
    this.minute,
    this.second,
    this.millisecond,
    this.unixtime,
    this.timezone,
    this.calendar,
    this.dateTime,
    this.type});