CustomItem constructor

const CustomItem({
  1. Key? key,
  2. required String title,
  3. required Widget contentWidget,
  4. TextStyle? titleStyle,
  5. bool isRequired = false,
  6. EdgeInsetsGeometry? padding,
  7. bool isDisabled = false,
})

Implementation

const CustomItem({
  super.key,
  required this.title,
  required this.contentWidget,
  this.titleStyle,
  this.isRequired = false,
  this.padding,
  this.isDisabled = false,
});