Person constructor

Person({
  1. String? personId,
  2. PersonProperties? personProperties,
  3. List<String>? suggestedDeletionIds,
  4. List<String>? suggestedInsertionIds,
  5. Map<String, SuggestedTextStyle>? suggestedTextStyleChanges,
  6. TextStyle? textStyle,
})

Implementation

Person({
  this.personId,
  this.personProperties,
  this.suggestedDeletionIds,
  this.suggestedInsertionIds,
  this.suggestedTextStyleChanges,
  this.textStyle,
});