fromJsonMap static method

ZonedDateTime? fromJsonMap(
  1. Map<String, dynamic>? json
)
override

Implementation

static ZonedDateTime? fromJsonMap(Map<String, dynamic>? json) =>
    json != null ? ZonedDateTime(date: json['date']) : null;