objects property

  1. @override
Iterable<Obj> objects
override

Returns an iterable for childs that can be represented as DataObject.

Other child objects are omitted from an iterable.

Implementation

@override
Iterable<Obj> get objects => map.values
    .where((e) => e is Obj || e is Map<String, Object?>)
    .map(_toObject);