captureMessage static method

Future<SentryId> captureMessage(
  1. String? message, {
  2. SentryLevel? level = SentryLevel.info,
  3. String? template,
  4. List? params,
  5. dynamic hint,
  6. ScopeCallback? withScope,
})

Implementation

static Future<SentryId> captureMessage(
  String? message, {
  SentryLevel? level = SentryLevel.info,
  String? template,
  List<dynamic>? params,
  dynamic hint,
  ScopeCallback? withScope,
}) =>
    _hub.captureMessage(
      message,
      level: level,
      template: template,
      params: params,
      hint: hint,
      withScope: withScope,
    );