getTransactionById method

Future<JSON> getTransactionById(
  1. String id
)

Implementation

Future<JSON> getTransactionById(String id) {
  return postCall<JSON>(
    "$baseURL/wallet/gettransactionbyid",
    data: {"value": id},
  );
}