getSymbol method
Implementation
Future<String> getSymbol() async {
final function = abi.functions[6];
assert(function.functionSelectorHex == "95d89b41");
final response = await readSafe(
function: function.addValues(values: []),
);
return response.outputs.first.castValue<String>();
}