GiantToadPropertyRow constructor

const GiantToadPropertyRow({
  1. required String label,
  2. required Widget child,
  3. double labelWidth = 96,
  4. Key? key,
})

Implementation

const GiantToadPropertyRow({
  required this.label,
  required this.child,
  this.labelWidth = 96,
  super.key,
});