audioOutputIconIOS static method

IconData audioOutputIconIOS(
  1. bool isSpeakerOn
)

Implementation

static IconData audioOutputIconIOS(bool isSpeakerOn) {
  if (isSpeakerOn) {
    return Icons.volume_up;
  } else {
    return Icons.volume_off;
  }
}