flogRequest function

void flogRequest(
  1. Object? object, [
  2. Object? feature
])

Use flogRequest to produce logs regarding any http/remote requests.

by adding a feature, this log will be filtered based off of the features that you are allowing to print via Flog.setUp(features: [...])

leave feature null to always print to console

Implementation

void flogRequest(Object? object, [Object? feature]) {
  if (_delegate.flogRequest != null) _delegate.flogRequest!(object);
  _filterAndLog(_FlogTag.request, object, feature: feature);
}