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