broadcastRequest method
Implementation
void broadcastRequest(String value) {
if (!logEnabled) return;
if (onRequest == null) return;
String prompt = "[CCRestApi - Request] $value";
print(prompt);
onRequest!("[CCRestApi - Request] $value");
}