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