getDeviceFeedback abstract method

Future<DeviceFeedbackResponse> getDeviceFeedback(
  1. String deviceId, {
  2. required String platformType,
  3. required String app,
})

Get device feedback code from API

deviceId - The device ID platformType - The platform type ('android', 'ios', 'windows', or 'linux') app - The app name to include in the API call

Implementation

Future<DeviceFeedbackResponse> getDeviceFeedback(
  String deviceId, {
  required String platformType,
  required String app,
});