IDFlowVideoConfig.fromJson constructor
Implementation
factory IDFlowVideoConfig.fromJson(Map<String, dynamic> json) {
return IDFlowVideoConfig(
uiVariant: IDFlowVideoUiVariant.fromJson(json['uiVariant']),
enableMicrophone: json['enableMicrophone'],
enableSoundGuides: json['enableSoundGuides'],
countdownEnabled: json['countdownEnabled'],
exitConfirmationEnabled: json['exitConfirmationEnabled'],
);
}