JobTitle property
      
      String?
      get
      JobTitle
      
    
    
Implementation
String? get JobTitle => this.PropertyBag[ContactSchema.JobTitle] as String?;
      
      set
      JobTitle
      (String? value) 
      
    
    
    
Implementation
set JobTitle(String? value) =>
    this.PropertyBag[ContactSchema.JobTitle] = value;