context property

  1. @override
Map<String, dynamic> context
override

The context around the exception. Use this for scoped-values and states that may have contributed to the exception and might be useful in reproduction.

Implementation

@override
Map<String, dynamic> get context => <String, dynamic>{
      'uri': uri,
      'statusCode': statusCode,
    };