fromGraphQLListNullableSessionVersionNullableToDartListNullableSessionVersionNullable function

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

Implementation

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