FormRow constructor

const FormRow({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsetsGeometry padding = _kDefaultPadding,
  4. Widget? helper,
  5. Widget? error,
  6. TextStyle? textStyle,
})

Implementation

const FormRow({
  super.key,
  required this.child,
  this.padding = _kDefaultPadding,
  this.helper,
  this.error,
  this.textStyle,
});