customError method

Future<CustomError> customError(
  1. CustomError error
)

Implementation

Future<CustomError> customError(final CustomError error) async {
  _logger.e(
    error,
    stackTrace: error.stackTrace,
  );
  return error;
}