AdgentsReportFormSubmit typedef

AdgentsReportFormSubmit = Future<void> Function(String feedback, {List<Uint8List>? additionalVideoAttachments, Map<String, dynamic>? extras, Uint8List? videoAttachment})

Report form submission (text + extras + optional MP4 from the form).

Implementation

typedef AdgentsReportFormSubmit = Future<void> Function(
  String feedback, {
  Map<String, dynamic>? extras,
  Uint8List? videoAttachment,
  List<Uint8List>? additionalVideoAttachments,
});