removeAt method

Future<void> removeAt(
  1. int index
)

Removes the child audio source at the given index

Implementation

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