SmartContractBABIEntryParam.deserialize constructor

SmartContractBABIEntryParam.deserialize(
  1. List<int> bytes
)

Implementation

factory SmartContractBABIEntryParam.deserialize(List<int> bytes) {
  final decode = TronProtocolBufferImpl.decode(bytes);
  return SmartContractBABIEntryParam(
      type: decode.getField(3),
      name: decode.getField(2),
      indexed: decode.getField(1));
}