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