ConstraintChainLink constructor

const ConstraintChainLink({
  1. required String widgetType,
  2. required Constraints constraints,
  3. Size? size,
  4. required int depth,
})

Implementation

const ConstraintChainLink({
  required this.widgetType,
  required this.constraints,
  this.size,
  required this.depth,
});