PropertyScaffold constructor

const PropertyScaffold({
  1. Key? key,
  2. required String label,
  3. required Widget child,
  4. String? tooltipMessage,
})

Implementation

const PropertyScaffold({
  Key? key,
  required this.label,
  required this.child,
  this.tooltipMessage,
}) : super(key: key);