isMicEnabled static method

bool isMicEnabled(
  1. Map<String, dynamic>? attributes
)

Implementation

static bool isMicEnabled(Map<String, dynamic>? attributes) {
  final value = attributes?['is_mic_enabled'];
  return _toBool(value);
}