Date.fromJson constructor

Date.fromJson(
  1. Map json_
)

Implementation

Date.fromJson(core.Map json_)
    : this(
        day: json_.containsKey('day') ? json_['day'] as core.int : null,
        month: json_.containsKey('month') ? json_['month'] as core.int : null,
        year: json_.containsKey('year') ? json_['year'] as core.int : null,
      );