addAll method

void addAll(
  1. Iterable<Embedding> embeddings
)

Adds all embeddings from embeddings.

Implementation

void addAll(Iterable<Embedding> embeddings) =>
    _embeddings.addAll(embeddings);