logObject static method

void logObject(
  1. Object? object
)

Implementation

static void logObject(Object? object) {
  if (mIsDebuggable) {
    String line = "$object";
    debugPrint("TalkPlus: $line");
  }
}