fromDartListNullableSessionVersionToGraphQLListNullableSessionVersion function

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

Implementation

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