InputLabel constructor

const InputLabel({
  1. Key? key,
  2. required String label,
  3. String? info,
})

Implementation

const InputLabel({
  super.key,
  required this.label,
  this.info,
});