tryFromBorsh static method

AddressLookupTableState? tryFromBorsh(
  1. Iterable<int>? buffer
)

Creates an instance of this class from a buffer.

Returns null if buffer is omitted.

Implementation

static AddressLookupTableState? tryFromBorsh(final Iterable<int>? buffer)
  => buffer != null ? AddressLookupTableState.fromBorsh(buffer) : null;