VerificationSessionOptions.fromJson constructor
VerificationSessionOptions.fromJson(
- Object? json
Implementation
factory VerificationSessionOptions.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return VerificationSessionOptions(
document: map['document'] == null
? null
: GelatoSessionDocumentOptions.fromJson(map['document']));
}