GetPropertiesResponse constructor
Implementation
factory GetPropertiesResponse({
$core.bool? ticksCountSupported,
$core.bool? angleDegreesSupported,
}) {
final $result = create();
if (ticksCountSupported != null) {
$result.ticksCountSupported = ticksCountSupported;
}
if (angleDegreesSupported != null) {
$result.angleDegreesSupported = angleDegreesSupported;
}
return $result;
}