GroupPositioned constructor

const GroupPositioned({
  1. Key? key,
  2. double? top,
  3. double? left,
  4. double? right,
  5. double? bottom,
  6. double? width,
  7. double? height,
  8. required Widget child,
})

Implementation

const GroupPositioned({
  super.key,
  this.top,
  this.left,
  this.right,
  this.bottom,
  this.width,
  this.height,
  required super.child,
});