Birthday property

DateTime? Birthday
Gets or sets the birthday of the contact.

Implementation

DateTime? get Birthday =>
    this.PropertyBag[ContactSchema.Birthday] as DateTime?;
void Birthday=(DateTime? value)

Implementation

set Birthday(DateTime? value) =>
    this.PropertyBag[ContactSchema.Birthday] = value;