Positioned.fill constructor

const Positioned.fill({
  1. required Widget child,
  2. ArcaneStyleData? style,
  3. Key? key,
})

Implementation

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