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