get static method

Projection? get(
  1. String code
)

Named Projection: a Projection can be obtained from the ProjectionStore via it's name. null value will return if Projection not exists in store.

Implementation

static Projection? get(String code) {
  var result = ProjectionStore().get(code);

  return result;
}