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