video property

LiveKitVideoGrant? get video

Video-specific grants embedded in the token, if present.

Implementation

LiveKitVideoGrant? get video {
  final raw = _claims['video'];
  if (raw is Map) {
    return LiveKitVideoGrant.fromJson(Map<String, dynamic>.from(raw));
  }
  return null;
}