SyncConfig constructor
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;
}