GroupPositioned.fill constructor

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

Implementation

const GroupPositioned.fill({
  Key? key,
  this.top = 0,
  this.left = 0,
  this.right = 0,
  this.bottom = 0,
  this.width,
  this.height,
  required Widget child,
}) : super(key: key, child: child);