PropertyPreview constructor

PropertyPreview({
  1. required String name,
  2. required PropertyPreviewType type,
  3. String? value,
  4. ObjectPreview? valuePreview,
  5. PropertyPreviewSubtype? subtype,
})

Implementation

PropertyPreview(
    {required this.name,
    required this.type,
    this.value,
    this.valuePreview,
    this.subtype});