SentryWidget constructor

SentryWidget({
  1. Key? key,
  2. required Widget child,
  3. @internal Hub? hub,
})

Implementation

SentryWidget({
  super.key,
  required this.child,
  @internal Hub? hub,
}) {
  _hub = hub ?? HubAdapter();
}