nullableStringTimestampToDate static method

DateTime? nullableStringTimestampToDate(
  1. dynamic json
)

Returns a DateTime from a JSON-encoded String (e.g. '2021-10-29T11:00:56.177379')

Implementation

static DateTime? nullableStringTimestampToDate(dynamic json) =>
    json == null ? null : stringTimestampToDate(json);