isImmutableObject function

bool isImmutableObject(
  1. SuiObjectResponse resp
)

Implementation

bool isImmutableObject(SuiObjectResponse resp) {
  final owner = getObjectOwner(resp);
  return owner?.immutable ?? false;
}