isVideoEnabled static method

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

Implementation

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