ModernFormLabelWithInfo constructor

const ModernFormLabelWithInfo({
  1. Key? key,
  2. required String labelText,
  3. required String labelTextHelper,
  4. TextStyle? labelStyle,
  5. Color? iconColor,
})

Implementation

const ModernFormLabelWithInfo({
  Key? key,
  required this.labelText,
  required this.labelTextHelper,
  this.labelStyle,
  this.iconColor,
}) : super(key: key);