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