12345678910111213141516171819202122232425262728293031323334353637 |
- import 'dart:async';
- import 'package:flutter/foundation.dart';
- void handleError(void Function() body) {
-
- FlutterError.onError = (FlutterErrorDetails details) {
- if (!kReleaseMode) {
-
- FlutterError.dumpErrorToConsole(details);
- } else {
-
- Zone.current.handleUncaughtError(details.exception, details.stack!);
- }
- };
-
- runZonedGuarded(body, (Object error, StackTrace stackTrace) async {
- await _reportError(error, stackTrace);
- });
- }
- Future<void> _reportError(Object error, StackTrace stackTrace) async {
- if (!kReleaseMode) {
- debugPrintStack(
- stackTrace: stackTrace,
- label: error.toString(),
- maxFrames: 100,
- );
- } else {
-
- }
- }
|