AlphTxData.fromJson constructor

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

Implementation

factory AlphTxData.fromJson(Map<String, dynamic> json) {
  return AlphTxData(
    unsignedTx: json['rawTransaction'],
    txId: json['txId'],
  );
}