sendBugReport method

Future<void> sendBugReport(
  1. String feedbackMessage,
  2. bool includeLogs,
  3. bool includeDiagnostics, {
  4. String? guestMailId,
  5. bool forceToAnonymous = false,
  6. List<Uri>? attachmentsUri,
})

Implementation

Future<void> sendBugReport(
    String feedbackMessage, bool includeLogs, bool includeDiagnostics,
    {String? guestMailId,
    bool forceToAnonymous = false,
    List<Uri>? attachmentsUri}) async {
  AppticsFlutterPlatform.instance.sendFeedback(0, feedbackMessage, includeLogs, includeDiagnostics,guestMailId: guestMailId,forceToAnonymous: forceToAnonymous, attachmentsUri: attachmentsUri);
}