sendCrash method

  1. @override
Future<Uri> sendCrash(
  1. String title,
  2. String stacktrace
)
override

Implementation

@override
Future<Uri> sendCrash(String title, String stacktrace) async {
  return promiseToFuture(bugfender_web.sendCrash(title, stacktrace))
      .then((value) => Uri.parse(value));
}