Label constructor

Label({
  1. required Component child,
  2. String tag = "label",
  3. String? id,
  4. Map<String, dynamic>? style,
  5. String? className,
})

Implementation

Label(
    {required this.child,
    super.tag = "label",
    super.id,
    super.style,
    super.className});