form_label constructor

const form_label(
  1. String text,
  2. {Key? key,
  3. required Widget child,
  4. TextStyle? style,
  5. String? hint,
  6. bool expandLabel = false,
  7. Widget? icon}
)

Implementation

const form_label(this.text,
    {super.key,
    required this.child,
    this.style,
    this.hint,
    this.expandLabel = false,
    this.icon});