reportFeedback method
Report feedback to the native platform (Android only).
deviceId - The device ID to report feedback for
Returns true if feedback was successfully reported
Implementation
@override
Future<bool> reportFeedback(String deviceId) async {
final result = await methodChannel.invokeMethod<bool>('reportFeedback', {
'deviceId': deviceId,
});
return result ?? false;
}