deathDate property

DateTime? deathDate

Implementation

DateTime? get deathDate => _deathDate;
void deathDate=(DateTime? value)

Implementation

set deathDate(DateTime? value) {
  if (value != null) {
    _sharedPreferences!.setInt(_deathDateName, value.millisecondsSinceEpoch);
  } else {
    _sharedPreferences!.remove(_deathDateName);
  }

  _deathDate = value;
}