Labelled constructor

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

Implementation

const Labelled({required this.child, this.label, super.key});