[dart-gen] Fix nullable list item issue (#3192)

This commit is contained in:
fondoger
2023-05-01 15:01:28 +08:00
committed by GitHub
parent b028ed058d
commit 3a66fc038f
3 changed files with 6 additions and 1 deletions

View File

@@ -74,6 +74,10 @@ func isClassListType(s string) bool {
return strings.HasPrefix(s, "List<") && !isAtomicType(getCoreType(s))
}
func isListItemsNullable(s string) bool {
return isListType(s) && isNullableType(getCoreType(s))
}
func isMapType(s string) bool {
return strings.HasPrefix(s, "Map<")
}