ExistsDomainResponse constructor
ExistsDomainResponse({
- bool? exists,
Implementation
factory ExistsDomainResponse({
$core.bool? exists,
}) {
final result = create();
if (exists != null) result.exists = exists;
return result;
}