Skip to content

Instantly share code, notes, and snippets.

@gyugyu90
Created October 20, 2024 01:38
Show Gist options
  • Save gyugyu90/b3ab862ffd6c682408aeedb3873f2fae to your computer and use it in GitHub Desktop.
Save gyugyu90/b3ab862ffd6c682408aeedb3873f2fae to your computer and use it in GitHub Desktop.
void main() {
var headphones = [
BluetoothHeadphone(),
Headphone(),
NoiseCancellingHeadphone()
];
headphones.forEach((headphone) {
headphone.decreaseVolume();
print(headphone.volume); // 4.5, 4.0, 4.8
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment