fromTriples static method
Creates an RDF graph from a list of triples (factory constructor)
This is a convenience factory method equivalent to the default constructor.
Example:
final graph = RdfGraph.fromTriples(myTriples);
Implementation
static RdfGraph fromTriples(Iterable<Triple> triples) =>
RdfGraph(triples: triples);