printWithSystemMethod function

dynamic printWithSystemMethod(
  1. String message
)

Implementation

printWithSystemMethod(String message) {
  bool isPrintNetworkLog = Http().httpDioConfig.isPrintNetworkLog;
  if (isPrintNetworkLog) {
    debugPrint(message);
  }
}