LocalDistributionProto_CheckExistenceResponse constructor
LocalDistributionProto_CheckExistenceResponse({
- bool? exist,
- ClientProto? client,
Implementation
factory LocalDistributionProto_CheckExistenceResponse({
$core.bool? exist,
$8.ClientProto? client,
}) {
final $result = create();
if (exist != null) {
$result.exist = exist;
}
if (client != null) {
$result.client = client;
}
return $result;
}