List constructor

List({
  1. ListProperties? listProperties,
  2. List<String>? suggestedDeletionIds,
  3. String? suggestedInsertionId,
  4. Map<String, SuggestedListProperties>? suggestedListPropertiesChanges,
})

Implementation

List({
  this.listProperties,
  this.suggestedDeletionIds,
  this.suggestedInsertionId,
  this.suggestedListPropertiesChanges,
});