findBus method

AudioBus? findBus(
  1. String name
)

Returns the bus created with createBus under name, the master bus for "master", or null.

Implementation

AudioBus? findBus(String name) => name == 'master' ? masterBus : _buses[name];