fromRobot static method

AudioIn fromRobot(
  1. RobotClient robot,
  2. String name
)

Get the AudioIn named name from the provided robot.

Implementation

static AudioIn fromRobot(RobotClient robot, String name) {
  return robot.getResource(AudioIn.getResourceName(name));
}