FieldItem constructor

const FieldItem({
  1. Key? key,
  2. bool isEnabled = true,
  3. AlignmentGeometry alignment = AlignmentDirectional.centerStart,
  4. VoidCallback? onTap,
  5. required Widget child,
})

Implementation

const FieldItem({
  Key? key,
  this.isEnabled = true,
  this.alignment = AlignmentDirectional.centerStart,
  this.onTap,
  required this.child,
}) : super(key: key);