sendUserFeedback method
Implementation
@override
Future<Uri> sendUserFeedback(String title, String text) {
return _channel.invokeMethod('sendUserFeedback', {
'title': title,
'value': text,
}).then((value) => Uri.parse(value));
}
@override
Future<Uri> sendUserFeedback(String title, String text) {
return _channel.invokeMethod('sendUserFeedback', {
'title': title,
'value': text,
}).then((value) => Uri.parse(value));
}