build method
Builds the widget based on the current state and animation interpolation.
context: The BuildContext for the widget.state: The current state of the sheet.interpolation: A value between0.0and1.0representing the animation progress.
Implementation
@override
Widget build(
BuildContext context,
StateType state,
double interpolation,
) =>
_builder(context, state, interpolation, _child);