extractMutableReference function

MgoMoveNormalizedType extractMutableReference(
  1. MgoMoveNormalizedType normalizedType
)

Implementation

MgoMoveNormalizedType? extractMutableReference(
    MgoMoveNormalizedType normalizedType) {
  if (normalizedType is Map && normalizedType.containsKey('MutableReference')) {
    return normalizedType['MutableReference'];
  }
  return null;
}