Generation property

String? Generation
Gets or sets the generation of the contact.

Implementation

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

Implementation

set Generation(String? value) =>
    this.PropertyBag[ContactSchema.Generation] = value;