WithdrawExpireUnfreezeContract.fromJson constructor

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

Create a new WithdrawExpireUnfreezeContract instance by parsing a JSON map.

Implementation

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