of static method

Implementation

static BoxConstraints of(BuildContext context) {
  final slideConstraints =
      context.dependOnInheritedWidgetOfExactType<SlideConstraintsProvider>();
  if (slideConstraints == null) {
    throw Exception('SlideConstraints not found in context');
  }
  return slideConstraints.constraints;
}