fromJson static method
Returns a new SignUpResponse instance and imports its values from
json if it's non-null, null if json is null.
Implementation
static SignUpResponse? fromJson(Map<String, dynamic>? json) => json == null
? null
: SignUpResponse(
sessionId: json[r'session_id'],
);