FederationResponse.fromJson constructor

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

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);