unsafeLoadFromDictionary<T extends Entity> method

T unsafeLoadFromDictionary<T extends Entity>(
  1. Dictionary source
)

Loads the values from a dictionary into the fields with the same name in the entity.

Implementation

T unsafeLoadFromDictionary<T extends Entity>(Dictionary source) {
  return _unsafeLoadFromDictionary(this as T, source);
}