toJson method
Implementation
@override
Map<String, dynamic> toJson() {
Map<String, dynamic> jsonObject = {};
if (jwt != null) jsonObject['jwt'] = jwt!.toJson();
if (jwtVp != null) jsonObject['jwt_vp'] = jwtVp!.toJson();
if (jwtVc != null) jsonObject['jwt_vc'] = jwtVc!.toJson();
if (ldp != null) jsonObject['ldp'] = ldp!.toJson();
if (ldpVp != null) jsonObject['ldp_vp'] = ldpVp!.toJson();
if (ldpVc != null) jsonObject['ldp_vc'] = ldpVc!.toJson();
return jsonObject;
}