getTRC10byID method

Future<JSON> getTRC10byID(
  1. String id
)

Implementation

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