show method

Future<void> show()

Implementation

Future<void> show() async {
  this.setState(() => this.height = widget.height);
  await Future.delayed(Duration(milliseconds: 100));
  this.offsetController.forward();
  this.opacityController.forward();
}