fromDartListSessionVersionNullableToGraphQLListSessionVersionNullable function

List<String?> fromDartListSessionVersionNullableToGraphQLListSessionVersionNullable(
  1. List<SessionVersion?> v
)

Implementation

List<String?>
fromDartListSessionVersionNullableToGraphQLListSessionVersionNullable(
  List<SessionVersion?> v,
) =>
    v
        .map(
          (e) =>
              fromDartSessionVersionNullableToGraphQLSessionVersionNullable(e),
        )
        .toList();