convertMapsToObjectIds static method

List convertMapsToObjectIds(
  1. List<Map> objectsMaps
)

Implementation

static List convertMapsToObjectIds(List<Map> objectsMaps) {
  return objectsMaps
      .map((e) => convertObjectMapToObjectIdOrLeaveReference(e))
      .toList();
}