ClaimantResponse.fromJson constructor

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

Implementation

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