Label constructor

Label({
  1. String? labelText,
  2. Widget? label,
  3. Widget? child,
  4. double? gap,
  5. EdgeInsets? labelPadding,
  6. Key? key,
})

Implementation

Label({
  this.labelText,
  this.label,
  this.child,
  this.gap,
  this.labelPadding,
  Key? key
}){

  assert(labelText != null || label != null);

}