vcConfig property

VCConfig? vcConfig
final

Defines configuration settings for initializing and customizing a Daakia meeting session.

Use this class to pass optional metadata and UI behavior settings when launching a meeting using the Daakia SDK. This allows developers to customize aspects like participant information (e.g., name), and enable advanced features like attendance tracking or analytics.

Example usage:

DaakiaMeetingConfiguration(
  metadata: {'identifier': 'user123', 'email': 'user@example.com'},
  participantNameConfig: ParticipantNameConfig(
    name: 'John Doe',
    isEditable: false,
  ),
);

All fields are optional and can be left null to use default behavior.

Implementation

final VCConfig? vcConfig;