fromGraphQLListNullableSessionVersionToDartListNullableSessionVersion function
Implementation
List<SessionVersion>?
fromGraphQLListNullableSessionVersionToDartListNullableSessionVersion(
List<Object?>? v,
) =>
v
?.map((e) => fromGraphQLSessionVersionToDartSessionVersion(e as String))
.toList();