fromDartListSessionIdNullableToGraphQLListSessionIdNullable function
Implementation
List<String?> fromDartListSessionIdNullableToGraphQLListSessionIdNullable(
List<SessionId?> v,
) =>
v
.map((e) => fromDartSessionIdNullableToGraphQLSessionIdNullable(e))
.toList();