fromGraphQLListNullableUserVersionNullableToDartListNullableUserVersionNullable function

List<UserVersion?>? fromGraphQLListNullableUserVersionNullableToDartListNullableUserVersionNullable(
  1. List<Object?>? v
)

Implementation

List<UserVersion?>?
fromGraphQLListNullableUserVersionNullableToDartListNullableUserVersionNullable(
  List<Object?>? v,
) => v
    ?.map(
      (e) =>
          fromGraphQLUserVersionNullableToDartUserVersionNullable(e as String?),
    )
    .toList();