ObjectPreview constructor

ObjectPreview({
  1. required ObjectPreviewType type,
  2. ObjectPreviewSubtype? subtype,
  3. String? description,
  4. required bool overflow,
  5. required List<PropertyPreview> properties,
  6. List<EntryPreview>? entries,
})

Implementation

ObjectPreview({
  required this.type,
  this.subtype,
  this.description,
  required this.overflow,
  required this.properties,
  this.entries,
});