upload static method
Future<void>
upload([
- String? summary,
- String? description,
- BugseeSeverityLevel? severity,
- List<
String> ? labels,
Create and upload report silently in background. Does not bring up any UI and does not interrupt user activities in any way.
Implementation
static Future<void> upload(
[String? summary,
String? description,
BugseeSeverityLevel? severity,
List<String>? labels]) async {
await _channel?.invokeMethod('upload', <String, dynamic>{
'summary': summary,
'description': description,
'severity': severity != null ? (severity.index + 1) : null,
'labels': labels
});
}