e static method
Implementation
static void e(String tag, dynamic message) {
if (MethodChannelFlyChatFlutter.enableDebugLog && kDebugMode) {
// print("MirrorFly : $tag ==> $msg");
final pattern = RegExp('.{1,800}'); // 800 is the size of each chunk
pattern.allMatches(message.toString()).forEach(
(match) => debugPrint("MirrorFly : $tag==> ${match.group(0)}"));
}
}