isValueType function
Implementation
bool isValueType(ProgrammaticScryptoSborValue value) {
return value is! ProgrammaticScryptoSborValueTuple &&
value is! ProgrammaticScryptoSborValueArray &&
value is! ProgrammaticScryptoSborValueMap;
}