sendFeedback method

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

Implementation

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