isImmutableObject function

bool isImmutableObject(
  1. MgoObjectResponse resp
)

Implementation

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