onCrudRM property

Implementation

ReactiveModelImp<Object?> get onCrudRM {
  if (_onCrudRM != null) {
    return _onCrudRM!;
  }
  _onCrudRM = ReactiveModel.create(creator: () => snapValue.data)
      as ReactiveModelImp<Object?>;
  initialize();
  if (snapValue.isWaiting || !_isOnCRUD) {
    _isOnCRUD = snapValue.isWaiting;
    _onCrudRM!.snapValue = snapValue;
  }
  return _onCrudRM!;
}