maybeFromJson static method

Date? maybeFromJson(
  1. String? json
)

Nullable convenience for optional fields.

Implementation

static Date? maybeFromJson(String? json) =>
    json == null ? null : Date.fromJson(json);