getDeviceFeedback method
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
@override
Future<DeviceFeedbackResponse> getDeviceFeedback(
String deviceId, {
required String platformType,
required String app,
}) async {
return await remoteDataSource.getDeviceFeedback(
deviceId,
platformType: platformType,
app: app,
);
}