tryFromBorsh static method

MasterEditionAccount? tryFromBorsh(
  1. Iterable<int>? buffer
)
override

Creates an instance of this class from a buffer.

Returns null if buffer is omitted.

Implementation

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