CreateTx.fromJson constructor

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

Implementation

factory CreateTx.fromJson(Map<String, dynamic> json) => CreateTx(
    estimation: Estimation.fromJson(json['estimation']),
    tx: Tx.fromJson(json['tx']),
    order: Order.fromJson(json['order']),
    orderId: json['orderId'],
    fixFee: json['fixFee'],
    userPoints: json['userPoints']);