disconnectedSync static method
Constructs a DisconnectedSyncConfiguration
Implementation
static DisconnectedSyncConfiguration disconnectedSync(
  List<SchemaObject> schemaObjects, {
  required String path,
  String? fifoFilesFallbackPath,
  List<int>? encryptionKey,
  int? maxNumberOfActiveVersions,
}) =>
    DisconnectedSyncConfiguration._(
      schemaObjects,
      path: path,
      fifoFilesFallbackPath: fifoFilesFallbackPath,
      encryptionKey: encryptionKey,
      maxNumberOfActiveVersions: maxNumberOfActiveVersions,
    );