timestamp property
The timestamp
Implementation
int? get timestamp {
final String? number = _config[DSPrefKeys.timestamp];
if (number == null) {
return null;
}
return int.tryParse(number);
}
The timestamp
Implementation
set timestamp(final int? value) {
if (value != null) {
_config[DSPrefKeys.timestamp] = value.toString();
} else {
_config.remove(DSPrefKeys.timestamp);
}
}