i static method

void i(
  1. String tag,
  2. dynamic message
)

Implementation

static void i(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)}"));
  }
}