Positioned.fill constructor

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

Implementation

const Positioned.fill({
  required this.child,
  this.top = 0,
  this.right = 0,
  this.bottom = 0,
  this.left = 0,
  this.style,
  super.key,
}) : width = null,
     height = null,
     inset = null;