SEP30AccountResponse.fromJson constructor

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

Implementation

factory SEP30AccountResponse.fromJson(Map<String, dynamic> json) =>
    SEP30AccountResponse(
        json['address'],
        List<SEP30ResponseIdentity>.from(
            json['identities'].map((e) => SEP30ResponseIdentity.fromJson(e))),
        List<SEP30ResponseSigner>.from(
            json['signers'].map((e) => SEP30ResponseSigner.fromJson(e))));