logError method

  1. @override
void logError(
  1. Object error,
  2. StackTrace stackTrace,
  3. RequestOptions options
)
override

Logs an error that occurred during parsing of response data.

  • error is the error that occurred.
  • stackTrace is the stack trace of the error.
  • options are the options that were used to make the request.

Implementation

@override
void logError(Object error, StackTrace stackTrace, RequestOptions options) {
  log('PlacesAPINew/CustomParseErrorLogger => Error: $error\nStackTrace: $stackTrace\nOptions: $options');
}