FederationResponse.fromJson constructor
Implementation
factory FederationResponse.fromJson(Map<String, dynamic> json) =>
new FederationResponse(
json['stellar_address'] as String,
json['account_id'] as String,
json['memo_type'] == null ? null : json['memo_type'] as String,
json['memo'] == null ? null : json['memo'] as String);