fullHeight property

void fullHeight

Implementation

void get fullHeight {
  final l = _latest;

  if (l is SizedBox)
    return _replace((w) => SizedBox(
          width: l.width ?? 0,
          height: double.infinity,
          child: w,
        ));

  _add((w) => SizedBox(height: double.infinity, child: w));
}