SyncConfig constructor

SyncConfig({
  1. int? nextId,
  2. int? nextVersion,
})

Implementation

factory SyncConfig({
  $core.int? nextId,
  $core.int? nextVersion,
}) {
  final _result = create();
  if (nextId != null) {
    _result.nextId = nextId;
  }
  if (nextVersion != null) {
    _result.nextVersion = nextVersion;
  }
  return _result;
}