OriginKeyResponse.fromJson constructor

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

Implementation

factory OriginKeyResponse.fromJson(Map<String, dynamic> json) =>
    OriginKeyResponse(
      status: json['status'],
      transactionAddress: json['transaction_address'],
    );