SunnyFieldLabel constructor

SunnyFieldLabel({
  1. required JsonPath path,
  2. bool? isFocused,
  3. required bool isRequired,
  4. required String label,
  5. Producer<String>? onTap,
  6. ValueChanged<String>? onChange,
})

Implementation

SunnyFieldLabel(
    {required JsonPath path,
    this.isFocused,
    required this.isRequired,
    required this.label,
    this.onTap,
    this.onChange})
    : super(key: Key(sunnyFieldLabelKey(path)));