S360fInputLabel constructor

const S360fInputLabel({
  1. required String? label,
  2. Key? key,
  3. bool? isRequired = false,
  4. bool isError = false,
  5. String? tooltipMessage,
  6. Widget? tooltipIcon = const Icon(MingCuteIcons.mgc_information_line),
  7. Color? tooltipIconColor,
})

Implementation

const S360fInputLabel({
  required this.label,
  super.key,
  this.isRequired = false,
  this.isError = false,
  this.tooltipMessage,
  this.tooltipIcon = const Icon(MingCuteIcons.mgc_information_line),
  this.tooltipIconColor,
});