debug static method
Implementation
static void debug(Object msg) {
if (TgoRTC.instance.options.debug) {
final text = '[DEBUG] $msg';
developer.log(text, name: 'DEBUG');
print(text);
}
}
static void debug(Object msg) {
if (TgoRTC.instance.options.debug) {
final text = '[DEBUG] $msg';
developer.log(text, name: 'DEBUG');
print(text);
}
}