sendCrash method

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

Implementation

@override
Future<Uri> sendCrash(String title, String stacktrace) async {
  final result = bugfender_web.sendCrash(title, stacktrace);
  final promiseResult = await result.toDart;
  return Uri.parse(promiseResult.toDart);
}