AccountGetSecureValue.deserialize constructor

AccountGetSecureValue.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory AccountGetSecureValue.deserialize(BinaryReader reader) {
  // Read [AccountGetSecureValue] fields.
  final types = reader.readVectorObject<SecureValueTypeBase>();

  // Construct [AccountGetSecureValue] object.
  final returnValue = AccountGetSecureValue(
    types: types,
  );

  // Now return the deserialized [AccountGetSecureValue].
  return returnValue;
}