MintCloseAuthority.fromAccountBytes constructor

MintCloseAuthority.fromAccountBytes(
  1. List<int> accountBytes
)

Implementation

factory MintCloseAuthority.fromAccountBytes(List<int> accountBytes) {
  final decode = _Utils.decodeFromAccount(accountBytes);
  return MintCloseAuthority(closeAuthority: decode["closeAuthority"]);
}