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