newEnsureProtected method

  1. @protected
Obj newEnsureProtected(
  1. Map<String, Object?> source
)

Do not use directly, only from sub classes (marked @protected).

Delegates to _ensureProtected(Map<String, Object?> source) factory. Should be overridden on sub classes.

Implementation

@protected
Obj newEnsureProtected(Map<String, Object?> source) =>
    DataObjectView._ensureProtected(source) as Obj;