DefaultFieldWidget constructor

const DefaultFieldWidget({
  1. Key? key,
  2. Widget? title,
  3. Widget? child,
  4. EdgeInsets? childPadding,
  5. HighlightController? highlightController,
})

Implementation

const DefaultFieldWidget({
  Key? key,
  this.title,
  this.child,
  this.childPadding,
  this.highlightController,
}) : super(key: key);