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