newObjectView method

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

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

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

Implementation

@protected
Obj newObjectView(Map<String, Object?> source) =>
    DataObject.view(source) as Obj;