positionedFill method

Positioned positionedFill({
  1. Key? key,
})

Implementation

Positioned positionedFill({
  Key? key,
}) {
  return Positioned.fill(
    key: key,
    child: this,
  );
}