Created
October 20, 2024 01:38
-
-
Save gyugyu90/b3ab862ffd6c682408aeedb3873f2fae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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