ExitsRequest.fromJson constructor
Implementation
factory ExitsRequest.fromJson(Map<String, dynamic> json) {
return ExitsRequest(
hezEthereumAddress: json['hezEthereumAddress'],
onlyPendingWithdraws: json['onlyPendingWithdraws'],
tokenId: json['tokenId']);
}