fromDartListNullableSessionVersionNullableToGraphQLListNullableSessionVersionNullable function

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

Implementation

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