reportErrorToVwoInsights static method

void reportErrorToVwoInsights(
  1. String type,
  2. String? stackTrace
)

Implementation

static void reportErrorToVwoInsights(String type, String? stackTrace) {
  _channel.invokeMethod(Constants.caseReportError, {
    Constants.keyStackTrace: stackTrace,
    Constants.keyCrashType: type
  });
}