lastModified property

  1. @JsonKey(name: 'last_modified_t', includeIfNull: false, fromJson: JsonHelper.timestampToDate, toJson: JsonHelper.dateToTimestamp)
DateTime? lastModified
getter/setter pair

Latest modification timestamp. Read-only.

Implementation

@JsonKey(
    name: 'last_modified_t',
    includeIfNull: false,
    fromJson: JsonHelper.timestampToDate,
    toJson: JsonHelper.dateToTimestamp)
DateTime? lastModified;