updatedAt property

DateTime updatedAt
inherited

Implementation

DateTime get updatedAt => DateTime.parse(_attributes[kUpdatedAt]!);
void updatedAt=(DateTime? x)

pass null to remove key from attributes

Implementation

set updatedAt(DateTime? x) => (x == null)
    ? _attributes.remove(kUpdatedAt)
    : _attributes[kUpdatedAt] = x.toIso8601String();