ForgedTransactionsRequest.fromJson constructor
Implementation
factory ForgedTransactionsRequest.fromJson(Map<String, dynamic> json) {
return ForgedTransactionsRequest(
tokenId: json['tokenId'],
ethereumAddress: json['ethereumAddress'],
accountIndex: json['accountIndex'],
batchNum: json['batchNum'],
fromItem: json['fromItem'],
);
}