DateTime.fromJson constructor

DateTime.fromJson(
  1. Map json_
)

Implementation

DateTime.fromJson(core.Map json_)
  : this(
      day: json_['day'] as core.int?,
      hours: json_['hours'] as core.int?,
      minutes: json_['minutes'] as core.int?,
      month: json_['month'] as core.int?,
      nanos: json_['nanos'] as core.int?,
      seconds: json_['seconds'] as core.int?,
      timeZone:
          json_.containsKey('timeZone')
              ? TimeZone.fromJson(
                json_['timeZone'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      utcOffset: json_['utcOffset'] as core.String?,
      year: json_['year'] as core.int?,
    );