reportErrorToWingifyInsights static method

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

Implementation

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