SEP30AccountResponse.fromJson constructor
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))));