Options constructor
Options({})
Implementation
factory Options({
$core.bool? isLinkingAllowed,
$core.bool? isCreationAllowed,
$core.bool? isAutoCreation,
$core.bool? isAutoUpdate,
}) {
final $result = create();
if (isLinkingAllowed != null) {
$result.isLinkingAllowed = isLinkingAllowed;
}
if (isCreationAllowed != null) {
$result.isCreationAllowed = isCreationAllowed;
}
if (isAutoCreation != null) {
$result.isAutoCreation = isAutoCreation;
}
if (isAutoUpdate != null) {
$result.isAutoUpdate = isAutoUpdate;
}
return $result;
}