captureMessage method
Future<SentryId>
captureMessage(
- String? message, {
- SentryLevel? level,
- String? template,
- List? params,
- Hint? hint,
- ScopeCallback? withScope,
override
Captures the message.
Implementation
@override
Future<SentryId> captureMessage(
String? message, {
SentryLevel? level,
String? template,
List? params,
Hint? hint,
ScopeCallback? withScope,
}) =>
Sentry.captureMessage(
message,
level: level,
template: template,
params: params,
hint: hint,
withScope: withScope,
);