expdH method

SizedBox expdH()

The function expdH returns a SizedBox widget with a height of double.infinity and a child widget wrapped in an Expanded widget.

Implementation

SizedBox expdH() => SizedBox(
      height: double.infinity,
      child: Expanded(child: this),
    );