list static method

dynamic list(
  1. List? list, {
  2. String? mark,
  3. bool isExpand = false,
  4. LogOption? option,
})

Output of log collection type.

Implementation

static list(List<dynamic>? list,
    {String? mark, bool isExpand = false, LogOption? option}) {
  if (IDKitLog.instance.optionLog.isEnable ?? true && value.isNoNull) {
    final LogOption vOption = IDKitLog.instance.optionLog.copy(option);
    final StackTrace stackTrace = StackTrace.current;
    TLog.outPutModeMethod(vOption, stackTrace, LogMethod.list,
        mark: mark, list: list, isExpand: isExpand);
  }
}