updateHeight method

dynamic updateHeight(
  1. double? height
)

Implementation

updateHeight(double? height) {
  WidgetsBinding.instance!.addPostFrameCallback((_) {
    this._height = height ?? 0;
    setState(() => {});
  });
}