fromGraphQLListNullableOperationIdNullableToDartListNullableOperationIdNullable function
Implementation
List<OperationId?>?
fromGraphQLListNullableOperationIdNullableToDartListNullableOperationIdNullable(
List<Object?>? v,
) => v
?.map(
(e) =>
fromGraphQLOperationIdNullableToDartOperationIdNullable(e as String?),
)
.toList();