PropertySheet constructor

const PropertySheet({
  1. Key? key,
  2. List<PropertySheet> sheets = const [],
  3. String title = '',
  4. List<TableRow> properties = const [],
  5. PropertySheetController? controller,
  6. bool showJSONButton = true,
  7. Widget headerBuilder(
    1. BuildContext,
    2. String title,
    3. String originalKey
    )?,
  8. Widget keyBuilder(
    1. BuildContext context,
    2. String text
    )?,
})

Implementation

const PropertySheet(
    {Key? key,
    this.sheets = const [],
    this.title = '',
    this.properties = const [],
    this.controller,
    this.showJSONButton = true,
    this.headerBuilder,
    this.keyBuilder})
    : super(key: key);