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