ClaimableBalanceClaimantCreatedEffectResponse.fromJson constructor

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

Implementation

factory ClaimableBalanceClaimantCreatedEffectResponse.fromJson(
        Map<String, dynamic> json) =>
    ClaimableBalanceClaimantCreatedEffectResponse(
        json['balance_id'],
        Asset.createFromCanonicalForm(json['asset'])!,
        json['amount'],
        ClaimantPredicateResponse.fromJson(json['predicate']),
        json['id'],
        json['type_i'],
        json['type'],
        json['created_at'],
        json['paging_token'],
        json['account'],
        EffectResponseLinks.fromJson(json['_links']))
      ..accountMuxed = json['account_muxed']
      ..accountMuxedId = json['account_muxed_id'];