RowData constructor

RowData({
  1. String? key,
  2. dynamic value,
  3. bool? isExpanded,
  4. List<JsonKeyType>? jsonKeyTypes,
  5. int? collapseCount,
  6. int level = 0,
  7. int index = 0,
  8. int? arrayIndex,
  9. int? childrenCount,
  10. bool isParent = false,
})

Implementation

RowData(
    {this.key,
    this.value,
    bool? isExpanded,
    this.jsonKeyTypes,
    this.collapseCount,
    this.level = 0,
    this.index = 0,
    this.arrayIndex,
    this.childrenCount,
    this.isParent = false}) {
  _isExpanded = isExpanded;
}