sendFeedback method

dynamic sendFeedback(
  1. String id,
  2. double zoom,
  3. String type, {
  4. String action = '',
  5. String desc = '',
})

Implementation

sendFeedback(String id, double zoom, String type,
    {String action = '', String desc = ''}) async {
  MapboxAdFlutterPlatform.instance
      .sendFeedback(id, zoom, type, action: action, desc: desc);
}