created property

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

Creation timestamp. Read-only.

Implementation

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