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