fromGraphQLListSessionIdNullableToDartListSessionIdNullable function
Implementation
List<SessionId?> fromGraphQLListSessionIdNullableToDartListSessionIdNullable(
List<Object?> v,
) => v
.map(
(e) => fromGraphQLSessionIdNullableToDartSessionIdNullable(e as String?),
)
.toList();