WithdrawBalanceContract.fromJson constructor

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

Create a new WithdrawBalanceContract instance by parsing a JSON map.

Implementation

factory WithdrawBalanceContract.fromJson(Map<String, dynamic> json) {
  return WithdrawBalanceContract(
    ownerAddress: TronAddress(json["owner_address"]),
  );
}