AEList constructor

AEList(
  1. Iterable iterable
)

Implementation

factory AEList(Iterable iterable) {
  //if (iterable == null) return null;
  return AEList.internal(iterable.where(_valueIsNotNull).map((value) {
    if (value is List) return AEList(value);
    if (value is Map<String, dynamic>) return AEObject(value);
    return value;
  }));
}