AgeVerificationResponse.fromJson constructor

AgeVerificationResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory AgeVerificationResponse.fromJson(Map<String, dynamic> json) {
  return AgeVerificationResponse(
    sessionId: json['session_id'],
  );
}