fromGraphQLListSessionVersionNullableToDartListSessionVersionNullable function

List<SessionVersion?> fromGraphQLListSessionVersionNullableToDartListSessionVersionNullable(
  1. List<Object?> v
)

Implementation

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