GetPropertiesResponse constructor

GetPropertiesResponse({
  1. bool? ticksCountSupported,
  2. bool? angleDegreesSupported,
})

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