add method

Future<void> add(
  1. AudioSource audioSource
)

Adds a child audio source

Implementation

Future<void> add(AudioSource audioSource) async {
  children.add(audioSource);
  // In a real implementation, we would notify the platform side
}