fromDartListNullableSessionVersionToGraphQLListNullableSessionVersion function
- List<
SessionVersion> ? v
Implementation
List<String>?
fromDartListNullableSessionVersionToGraphQLListNullableSessionVersion(
List<SessionVersion>? v,
) => v?.map((e) => fromDartSessionVersionToGraphQLSessionVersion(e)).toList();