expiresAt property

DateTime expiresAt

Implementation

DateTime get expiresAt => DateTime.parse(attributes[kExpiresAt] ?? '0');
void expiresAt=(DateTime x)

Implementation

set expiresAt(DateTime x) => attributes[kExpiresAt] = x.toIso8601String();