Hint.withResponse constructor

Hint.withResponse(
  1. SentryResponse response
)

Implementation

factory Hint.withResponse(SentryResponse response) {
  final hint = Hint();
  hint.response = response;
  return hint;
}