GetGPIOResponse constructor

GetGPIOResponse({
  1. bool? high,
})

Implementation

factory GetGPIOResponse({
  $core.bool? high,
}) {
  final $result = create();
  if (high != null) {
    $result.high = high;
  }
  return $result;
}