netCoreSyncInitializeClient method

Future<void> netCoreSyncInitializeClient(
  1. NetCoreSyncEngine engine
)

One of the initialization methods that is invoked by the netCoreSyncInitialize() call.

(This method is used internally, no need to use it directly)

Implementation

Future<void> netCoreSyncInitializeClient(
  NetCoreSyncEngine engine,
) async {
  _dataAccess = DataAccess(
    this,
    engine,
  );
}