ClaimantResponse.fromJson constructor
Implementation
factory ClaimantResponse.fromJson(Map<String, dynamic> json) =>
new ClaimantResponse(
json['destination'] as String,
ClaimantPredicateResponse.fromJson(
json['predicate'] as Map<String, dynamic>));