enableTimelineLogging property Null safety

bool enableTimelineLogging

Current state of HTTP request logging from all HttpClients to the developer timeline.

Default is false.

Implementation

static bool get enableTimelineLogging => _enableTimelineLogging;
void enableTimelineLogging= (bool value)

Enable logging of HTTP requests from all HttpClients to the developer timeline.

Default is false.

Implementation

static set enableTimelineLogging(bool value) {
  _enableTimelineLogging =
      valueOfNonNullableParamWithDefault<bool>(value, false);
}