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