FormLabel constructor

const FormLabel({
  1. Key? key,
  2. required String label,
  3. EdgeInsetsGeometry padding = const EdgeInsets.all(0.0),
})

Implementation

const FormLabel({
  super.key,
  required this.label,
  this.padding = const EdgeInsets.all(0.0),
});