ExitsRequest.fromJson constructor

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

Implementation

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