idsNotNull property

List<Object> idsNotNull

Non-nullable versions of ids.

Implementation

List<Object> get idsNotNull =>
    ids?.where((e) => e != null).whereType<Object>().toList() ?? <Object>[];