fromNullableJson static method

Date? fromNullableJson(
  1. String? date
)

Implementation

static Date? fromNullableJson(String? date) =>
    date == null ? null : Date.parse(date);