ePrint function

void ePrint(
  1. Object? object
)

This is a standard print with dart:core. Also allows you to disable the output of logs for the entire project, for this use EPrintSettings.disablePrint(true)

Implementation

void ePrint(Object? object) {
  if (!_PrintSettings.instance.disable) {
    print(object);
  }
}