fromDartListSessionVersionToGraphQLListSessionVersion function

List<String> fromDartListSessionVersionToGraphQLListSessionVersion(
  1. List<SessionVersion> v
)

Implementation

List<String> fromDartListSessionVersionToGraphQLListSessionVersion(
  List<SessionVersion> v,
) => v.map((e) => fromDartSessionVersionToGraphQLSessionVersion(e)).toList();