AccountIdentifier.deserialize constructor
Implementation
factory AccountIdentifier.deserialize(List<int> bytes) {
final decode = TronProtocolBufferImpl.decode(bytes);
return AccountIdentifier(
address: TronAddress.fromBytes(decode.getField(1)));
}