AuthResponse.fromJson constructor
Implementation
factory AuthResponse.fromJson(Map<String, dynamic> json) {
return AuthResponse(
responseCode: json['responseCode'],
institutionId: json['institutionId'],
authToken: json['auth_token'],
expiry: json['expiry'],
);
}