fromGraphQLListNullableOperationNumNullableToDartListNullableOperationNumNullable function
Implementation
List<OperationNum?>?
fromGraphQLListNullableOperationNumNullableToDartListNullableOperationNumNullable(
List<Object?>? v,
) => v
?.map(
(e) =>
fromGraphQLOperationNumNullableToDartOperationNumNullable(e as int?),
)
.toList();