CustomInputText constructor

const CustomInputText(
  1. {Key? key,
  2. required String label,
  3. Color? labelColor,
  4. String? iconPath,
  5. Color? iconColor,
  6. required Widget child,
  7. Widget? textComponent}
)

Implementation

const CustomInputText({
  Key? key,
  required this.label,
  this.labelColor,
  this.iconPath,
  this.iconColor,
  required this.child,
  this.textComponent,
}) : super(key: key);