tryFromBorsh static method
Creates an instance of this
class from a buffer.
Returns null
if buffer
is omitted.
Implementation
static NonceAccount? tryFromBorsh(final Iterable<int>? buffer) =>
buffer != null ? NonceAccount.fromBorsh(buffer) : null;