iterable static method

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

Collection of values or elements.

Implementation

static iterable(Iterable<dynamic>? iterable,
    {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.iterable,
        mark: mark, iterable: iterable, isExpand: isExpand);
  }
}