CreateTx.fromJson constructor
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']);